Skip to content
Snippets Groups Projects
Commit 5d3f2190 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

kernel/modules: load pppol2tp after pppox


l2tp_ppp needs to be loaded after pppox, otherwise it ends up like this:
l2tp_ppp: Unknown symbol pppox_ioctl (err 0)
...
during boot.
I also fixed the dependency, it should be pppox rather than pppoe.

Signed-off-by: default avatarDaniel Golle <dgolle@allnet.de>

SVN-Revision: 32562
parent 0653efa9
No related branches found
No related tags found
No related merge requests found
...@@ -560,10 +560,10 @@ $(eval $(call KernelPackage,pptp)) ...@@ -560,10 +560,10 @@ $(eval $(call KernelPackage,pptp))
define KernelPackage/pppol2tp define KernelPackage/pppol2tp
SUBMENU:=$(NETWORK_SUPPORT_MENU) SUBMENU:=$(NETWORK_SUPPORT_MENU)
TITLE:=PPPoL2TP support TITLE:=PPPoL2TP support
DEPENDS:=kmod-ppp +kmod-pppoe +kmod-l2tp DEPENDS:=kmod-ppp +kmod-pppox +kmod-l2tp
KCONFIG:=CONFIG_PPPOL2TP KCONFIG:=CONFIG_PPPOL2TP
FILES:=$(LINUX_DIR)/net/l2tp/l2tp_ppp.ko FILES:=$(LINUX_DIR)/net/l2tp/l2tp_ppp.ko
AUTOLOAD:=$(call AutoLoad,40,l2tp_ppp) AUTOLOAD:=$(call AutoLoad,41,l2tp_ppp)
endef endef
define KernelPackage/pppol2tp/description define KernelPackage/pppol2tp/description
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment