diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-18 08:44:40 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-18 08:44:40 +0100 |
commit | ecccdfb45e27df5d9ee6deba57fb4fa28131a59d (patch) | |
tree | db472d4cce5e4a6ca90c2b87a1a9de7dc1a3fb78 /package/ppp | |
parent | 29aeaabe6982746e79cdec6ce8975f1207c1a1dc (diff) |
enable pppoa and fix dsl driver
- fix dsl driver crash, sync is now successful
- add ppp ppp over atm
Diffstat (limited to 'package/ppp')
-rw-r--r-- | package/ppp/Config.in | 12 | ||||
-rw-r--r-- | package/ppp/Makefile | 6 |
2 files changed, 12 insertions, 6 deletions
diff --git a/package/ppp/Config.in b/package/ppp/Config.in index 0969ae40a..68b5c4d66 100644 --- a/package/ppp/Config.in +++ b/package/ppp/Config.in @@ -5,12 +5,12 @@ config ADK_PACKAGE_PPP default n select ADK_KPACKAGE_KMOD_PPP -#config ADK_PACKAGE_PPP_MOD_PPPOA -# prompt "ppp-mod-pppoa................... PPPoA (PPP over ATM) plugin" -# tristate -# default n -# select ADK_KPACKAGE_KMOD_PPPOATM -# depends on ADK_PACKAGE_PPP +config ADK_PACKAGE_PPP_MOD_PPPOA + prompt "ppp-mod-pppoa................... PPPoA (PPP over ATM) plugin" + tristate + default n + select ADK_KPACKAGE_KMOD_PPPOATM + depends on ADK_PACKAGE_PPP config ADK_PACKAGE_PPP_MOD_PPPOE prompt "ppp-mod-pppoe................... PPPoE (PPP over Ethernet) plugin" diff --git a/package/ppp/Makefile b/package/ppp/Makefile index 295c19b0e..350095cb6 100644 --- a/package/ppp/Makefile +++ b/package/ppp/Makefile @@ -39,6 +39,7 @@ XAKE_FLAGS+= CC="${TARGET_CC}" \ SUB_INSTALLS-y:= SUB_INSTALLS-m:= SUB_INSTALLS-${ADK_PACKAGE_PPP_MOD_PPPOE}+= mod-pppoe-install +SUB_INSTALLS-${ADK_PACKAGE_PPP_MOD_PPPOA}+= mod-pppoa-install SUB_INSTALLS-${ADK_PACKAGE_PPP_MOD_RADIUS}+= mod-radius-install SUB_INSTALLS-${ADK_PACKAGE_PPP_MOD_CHAT}+= mod-chat-install SUB_INSTALLS-${ADK_PACKAGE_PPP_MOD_PPPDUMP}+= mod-pppdump-install @@ -81,6 +82,11 @@ mod-pppoe-install: ${INSTALL_BIN} $(WRKINST)/usr/lib/pppd/$(PKG_VERSION)/rp-pppoe.so \ ${IDIR_PPP_MOD_PPPOE}/usr/lib/pppd/$(PKG_VERSION) +mod-pppoa-install: + ${INSTALL_DIR} ${IDIR_PPP_MOD_PPPOA}/usr/lib/pppd/$(PKG_VERSION) + ${INSTALL_BIN} $(WRKINST)/usr/lib/pppd/$(PKG_VERSION)/pppoatm.so \ + ${IDIR_PPP_MOD_PPPOA}/usr/lib/pppd/$(PKG_VERSION) + mod-chat-install: ${INSTALL_DIR} ${IDIR_PPP_MOD_CHAT}/usr/sbin ${CP} ${WRKINST}/usr/sbin/chat ${IDIR_PPP_MOD_CHAT}/usr/sbin/ |