mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-25 09:47:43 +02:00
[package] ppp: add hotplug helper for usb dsl modems to ppp-mod-pppoa package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21302 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
71f6198448
commit
cae51af965
@ -149,6 +149,8 @@ define Package/ppp-mod-pppoa/install
|
|||||||
$(1)/usr/lib/pppd/$(PKG_VERSION)/
|
$(1)/usr/lib/pppd/$(PKG_VERSION)/
|
||||||
$(INSTALL_DIR) $(1)/lib/network
|
$(INSTALL_DIR) $(1)/lib/network
|
||||||
$(INSTALL_BIN) ./files/pppoa.sh $(1)/lib/network/
|
$(INSTALL_BIN) ./files/pppoa.sh $(1)/lib/network/
|
||||||
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/atm
|
||||||
|
$(INSTALL_DATA) ./files/etc/hotplug.d/atm/20-usb-modem $(1)/etc/hotplug.d/atm/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/ppp-mod-pppoe/install
|
define Package/ppp-mod-pppoe/install
|
||||||
|
25
package/ppp/files/etc/hotplug.d/atm/20-usb-modem
Normal file
25
package/ppp/files/etc/hotplug.d/atm/20-usb-modem
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ "$ACTION" = "add" ]; then
|
||||||
|
include /lib/network
|
||||||
|
scan_interfaces
|
||||||
|
|
||||||
|
local found=0
|
||||||
|
local ifc
|
||||||
|
for ifc in $interfaces; do
|
||||||
|
local up
|
||||||
|
config_get_bool up "$ifc" up 0
|
||||||
|
|
||||||
|
local proto
|
||||||
|
config_get proto "$ifc" proto
|
||||||
|
|
||||||
|
if [ "$proto" = "pppoa" ] && [ "$up" != 1 ]; then
|
||||||
|
found=1
|
||||||
|
( sleep 1; ifup "$ifc" ) &
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ "$found" != 1 ]; then
|
||||||
|
logger "Found no matching interface for DSL device $DEVICENAME"
|
||||||
|
fi
|
||||||
|
fi
|
Loading…
Reference in New Issue
Block a user