From: Jo-Philipp Wich Date: Thu, 2 May 2013 11:25:18 +0000 (+0000) Subject: kernel: netfilter.mk: Explicitly set the order of autoloaded modules X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=86585ad45356629c871776cb7ed779d49616e0dc kernel: netfilter.mk: Explicitly set the order of autoloaded modules In my machine, the file is created with arptable_filter before arp_tables. This can't happen because the former depends on the latter. So, instead of rely on wildcards (*.ko), set by hand the files to be loaded in the correct order. Signed-off-by: Jonh Wendell SVN-Revision: 36512 --- diff --git a/package/kernel/modules/netfilter.mk b/package/kernel/modules/netfilter.mk index 50180a5f2c..4e4c85f45c 100644 --- a/package/kernel/modules/netfilter.mk +++ b/package/kernel/modules/netfilter.mk @@ -402,7 +402,7 @@ endef $(eval $(call KernelPackage,ip6tables)) - +ARP_MODULES = arp_tables arpt_mangle arptable_filter define KernelPackage/arptables SUBMENU:=$(NF_MENU) TITLE:=ARP firewalling modules @@ -410,7 +410,7 @@ define KernelPackage/arptables KCONFIG:=CONFIG_IP_NF_ARPTABLES \ CONFIG_IP_NF_ARPFILTER \ CONFIG_IP_NF_ARP_MANGLE - AUTOLOAD:=$(call AutoLoad,49,$(notdir $(patsubst %.ko,%,$(wildcard $(LINUX_DIR)/net/ipv4/netfilter/arp*.ko)))) + AUTOLOAD:=$(call AutoLoad,49,$(ARP_MODULES)) endef define KernelPackage/arptables/description