diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-09-17 15:31:45 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-09-17 15:31:45 +0000 |
commit | 6a22f9ed7e6fe3e66ffce160ac9c1985fed854e7 (patch) | |
tree | d93d1ec9d42b6b3c03e027897d0dd0245e802265 | |
parent | 34a9bcdcca51fbfd735062b88d5e69675128db9f (diff) | |
download | master-187ad058-6a22f9ed7e6fe3e66ffce160ac9c1985fed854e7.tar.gz master-187ad058-6a22f9ed7e6fe3e66ffce160ac9c1985fed854e7.tar.bz2 master-187ad058-6a22f9ed7e6fe3e66ffce160ac9c1985fed854e7.zip |
firewall: depend on kmod-ipt-conntrack (#20542)
Our ruleset requires kernel support for conntrack state matching, therfore
depend on the require kmod. Fixes #20542.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46990 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/network/config/firewall/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/config/firewall/Makefile b/package/network/config/firewall/Makefile index cc187b0396..15cfa31c65 100644 --- a/package/network/config/firewall/Makefile +++ b/package/network/config/firewall/Makefile @@ -27,7 +27,7 @@ define Package/firewall SECTION:=net CATEGORY:=Base system TITLE:=OpenWrt C Firewall - DEPENDS:=+libubox +libubus +libuci +libip4tc +IPV6:libip6tc +libxtables +kmod-ipt-core +kmod-ipt-nat + DEPENDS:=+libubox +libubus +libuci +libip4tc +IPV6:libip6tc +libxtables +kmod-ipt-core +kmod-ipt-conntrack +kmod-ipt-nat endef define Package/firewall/description |