diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-06-18 23:30:48 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-06-18 23:30:48 +0000 |
commit | 7f0ce50d3c312d2f7c498e5ba16882cecaf3214d (patch) | |
tree | d885a4641d58c9e1c8c5eef51c859036b6f7eb56 /include | |
parent | 8a5df4ff676e8b1171e2ee93e9e91854d38242ec (diff) | |
download | master-187ad058-7f0ce50d3c312d2f7c498e5ba16882cecaf3214d.tar.gz master-187ad058-7f0ce50d3c312d2f7c498e5ba16882cecaf3214d.tar.bz2 master-187ad058-7f0ce50d3c312d2f7c498e5ba16882cecaf3214d.zip |
kmod-ipt-nathelper-extra: fix missing nf_conntrack_broadcast.ko
kmod-ipt-nathelper-extra is missing the package nf_conntrack_broadcast.ko
if it is not included into the kmod-ipt-nathelper-extra packge the modules
nf_conntrack_snmp and nf_nat_snmp_basic cant get loaded:
[ 44.500000] nf_conntrack_snmp: Unknown symbol nf_conntrack_broadcast_help (err 0)
[ 44.664000] nf_nat_snmp_basic: Unknown symbol nf_nat_snmp_hook (err 0)
Signed-off-by: Peter Wagner <tripolar@gmx.at>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32434 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/netfilter.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/netfilter.mk b/include/netfilter.mk index bd52ed9b03..f5a3961cbd 100644 --- a/include/netfilter.mk +++ b/include/netfilter.mk @@ -185,6 +185,7 @@ $(eval $(call nf_add,IPT_NATHELPER,CONFIG_NF_NAT_IRC, $(P_V4)nf_nat_irc)) # nathelper-extra +$(eval $(call nf_add,IPT_NATHELPER_EXTRA,CONFIG_NF_CONNTRACK_BROADCAST, $(P_XT)nf_conntrack_broadcast)) $(eval $(call nf_add,IPT_NATHELPER_EXTRA,CONFIG_NF_CONNTRACK_AMANDA, $(P_XT)nf_conntrack_amanda)) $(eval $(call nf_add,IPT_NATHELPER_EXTRA,CONFIG_NF_NAT_AMANDA, $(P_V4)nf_nat_amanda)) $(eval $(call nf_add,IPT_NATHELPER_EXTRA,CONFIG_NF_CT_PROTO_GRE, $(P_XT)nf_conntrack_proto_gre)) |