1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 23:07:19 +03:00

[package] netfilter/iptables: disable IMQ on 2.6.27

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12984 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2008-10-15 10:56:13 +00:00
parent 9569535774
commit 313afd99d6
2 changed files with 4 additions and 3 deletions

View File

@ -107,7 +107,7 @@ define Package/iptables-mod-filter/description
endef
define Package/iptables-mod-imq
$(call Package/iptables/Module, +kmod-ipt-imq)
$(call Package/iptables/Module, +kmod-ipt-imq @!LINUX_2_6_27)
TITLE:=IMQ support
endef

View File

@ -237,7 +237,7 @@ define KernelPackage/ipt-imq
imq \
$(IPT_IMQ-m) \
))
DEPENDS:= kmod-ipt-core
DEPENDS:= kmod-ipt-core @!LINUX_2_6_27
endef
define KernelPackage/ipt-imq/description
@ -354,10 +354,11 @@ endef
$(eval $(call KernelPackage,ipt-extra))
# XXX: disabled on 2.6.27 due to broken IMQ
define KernelPackage/ip6tables
SUBMENU:=$(NF_MENU)
TITLE:=IPv6 modules
DEPENDS:=+kmod-ipv6
DEPENDS:=+kmod-ipv6 @!LINUX_2_6_27
KCONFIG:=CONFIG_IP6_NF_IPTABLES
FILES:=$(foreach mod,$(IPT_IPV6-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
AUTOLOAD:=$(call AutoLoad,49,$(notdir $(IPT_IPV6-m)))