From: Florian Fainelli Date: Sat, 7 Apr 2007 21:54:20 +0000 (+0000) Subject: adsl-start is now pppoe-start (#1562) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=93d63b2d653672d35a3805ca748a435998104900 adsl-start is now pppoe-start (#1562) SVN-Revision: 6889 --- diff --git a/net/rp-pppoe/Makefile b/net/rp-pppoe/Makefile index fa0b2b5fcc..55c02cefd0 100644 --- a/net/rp-pppoe/Makefile +++ b/net/rp-pppoe/Makefile @@ -63,6 +63,7 @@ define Package/rp-pppoe-client/install $(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/ppp/pppoe.conf $(1)/etc/ppp/ $(INSTALL_DIR) $(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 define Package/rp-pppoe-relay/install diff --git a/net/rp-pppoe/files/pppoe-client.init b/net/rp-pppoe/files/pppoe-client.init index ba6c7cd72d..7854cf65ed 100644 --- a/net/rp-pppoe/files/pppoe-client.init +++ b/net/rp-pppoe/files/pppoe-client.init @@ -2,10 +2,10 @@ # Copyright (C) 2006 OpenWrt.org start() { - adsl-start + pppoe-start } stop() { - adsl-stop + pppoe-stop }