adsl-start is now pppoe-start (#1562)

git-svn-id: svn://svn.openwrt.org/openwrt/packages@6889 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-04-07 21:54:20 +00:00
parent a56116b980
commit 78bc43b98a
2 changed files with 3 additions and 2 deletions

View File

@ -63,6 +63,7 @@ define Package/rp-pppoe-client/install
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/ppp/pppoe.conf $(1)/etc/ppp/ $(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/ppp/pppoe.conf $(1)/etc/ppp/
$(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_DIR) $(1)/usr/sbin
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe $(1)/usr/sbin/ $(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe $(1)/usr/sbin/
$(CP) $(PKG_BUILD_DIR)/scripts/pppoe-{start,stop} $(1)/usr/sbin/
endef endef
define Package/rp-pppoe-relay/install define Package/rp-pppoe-relay/install

View File

@ -2,10 +2,10 @@
# Copyright (C) 2006 OpenWrt.org # Copyright (C) 2006 OpenWrt.org
start() { start() {
adsl-start pppoe-start
} }
stop() { stop() {
adsl-stop pppoe-stop
} }