ppp: - implement coldplugging for pppoa interfaces - honour device option to select the DSL adapter - don't set any default mtu, rely on pppd to negotiate it - bump pkg revision
SVN-Revision: 23530
This commit is contained in:
parent
64f9925245
commit
6029e1b618
2 changed files with 7 additions and 5 deletions
|
@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=ppp
|
PKG_NAME:=ppp
|
||||||
PKG_VERSION:=2.4.4
|
PKG_VERSION:=2.4.4
|
||||||
PKG_RELEASE:=11
|
PKG_RELEASE:=12
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/ppp/
|
PKG_SOURCE_URL:=ftp://ftp.samba.org/pub/ppp/
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
|
coldplug_interface_pppoa() {
|
||||||
|
setup_interface_pppoa x "$1"
|
||||||
|
}
|
||||||
|
|
||||||
stop_interface_pppoa() {
|
stop_interface_pppoa() {
|
||||||
stop_interface_ppp "$1"
|
stop_interface_ppp "$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
setup_interface_pppoa() {
|
setup_interface_pppoa() {
|
||||||
local iface="$1"
|
|
||||||
local config="$2"
|
local config="$2"
|
||||||
|
|
||||||
local device
|
local device
|
||||||
|
@ -29,9 +32,8 @@ setup_interface_pppoa() {
|
||||||
|
|
||||||
local mtu
|
local mtu
|
||||||
config_get mtu "$config" mtu
|
config_get mtu "$config" mtu
|
||||||
mtu=${mtu:-1500}
|
|
||||||
|
|
||||||
start_pppd "$config" \
|
start_pppd "$config" \
|
||||||
plugin pppoatm.so ${vpi:-8}.${vci:-35} ${encaps} \
|
plugin pppoatm.so ${device:+$device.}${vpi:-8}.${vci:-35} \
|
||||||
mtu $mtu mru $mtu
|
${encaps} ${mtu:+mtu $mtu mru $mtu}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue