remove pppoe init script, add ifup.pppoe for that
SVN-Revision: 1325
This commit is contained in:
parent
0f46e35d79
commit
bdd3e06120
2 changed files with 6 additions and 5 deletions
|
@ -70,6 +70,7 @@ $(PKG_BUILD_DIR)/.built:
|
|||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
CC=$(TARGET_CC) \
|
||||
COPTS="$(TARGET_CFLAGS)" \
|
||||
HAVE_INET6="1" \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)/usr" \
|
||||
all install
|
||||
touch $@
|
||||
|
@ -88,8 +89,8 @@ $(IPKG_PPP):
|
|||
$(IPKG_BUILD) $(IDIR_PPP) $(PACKAGE_DIR)
|
||||
|
||||
$(IDIR_PPP_MOD_PPPOE)/etc/init.d/S50pppoe:
|
||||
install -d -m0755 $(IDIR_PPP_MOD_PPPOE)/etc/init.d
|
||||
install -m0755 ./files/pppoe.init $(IDIR_PPP_MOD_PPPOE)/etc/init.d/S50pppoe
|
||||
install -d -m0755 $(IDIR_PPP_MOD_PPPOE)/sbin
|
||||
install -m0755 ./files/ifup.pppoe $(IDIR_PPP_MOD_PPPOE)/sbin/
|
||||
|
||||
$(IPKG_PPP_MOD_PPPOE): $(IDIR_PPP_MOD_PPPOE)/etc/init.d/S50pppoe
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
. /etc/functions.sh
|
||||
IF_NAME=$1
|
||||
|
||||
WAN_PROTO=$(nvram get wan_proto)
|
||||
[ "$WAN_PROTO" = "pppoe" ] || exit 0
|
||||
PROTO=$(nvram get ${IF_NAME}_proto)
|
||||
[ "$PROTO" = "pppoe" ] || exit 0
|
||||
|
||||
for module in slhc ppp_generic pppox pppoe; do
|
||||
/sbin/insmod $module 2>/dev/null >/dev/null
|
Loading…
Reference in a new issue