summaryrefslogtreecommitdiffstats
path: root/package/iptables/Config.in
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2015-12-20 17:05:27 -0300
committerPeter Korsgaard <peter@korsgaard.com>2015-12-30 00:10:08 +0100
commit35dc775b83b8054d27a75a218d30c7a0f15b6a6d (patch)
treeb39b0465b1e78bea4ccfa62e15ee55fd224e4e74 /package/iptables/Config.in
parent5203541aa62c1d77d1e85662961bd7ab313813bc (diff)
downloadbuildroot-35dc775b83b8054d27a75a218d30c7a0f15b6a6d.tar.gz
buildroot-35dc775b83b8054d27a75a218d30c7a0f15b6a6d.zip
iptables: bump to version 1.6.0
Add option for nftables compat utilies and for bpf compiler/nfsynproxy configuration tool. Drop symlink trickery since it's not required any more. Switch homepage to proper one and drop the kernel v2.4+ note since that's not supported by buildroot anyway. Drop most patches (except musl build) since they're upstream. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/iptables/Config.in')
-rw-r--r--package/iptables/Config.in29
1 files changed, 27 insertions, 2 deletions
diff --git a/package/iptables/Config.in b/package/iptables/Config.in
index 8c4e989fcc..ae7a634c65 100644
--- a/package/iptables/Config.in
+++ b/package/iptables/Config.in
@@ -1,6 +1,31 @@
config BR2_PACKAGE_IPTABLES
bool "iptables"
help
- Linux kernel (2.4+) firewall, NAT, and packet mangling tools.
+ Linux kernel firewall, NAT, and packet mangling tools.
- http://www.iptables.org/
+ http://www.netfilter.org/projects/iptables/index.html
+
+if BR2_PACKAGE_IPTABLES
+
+config BR2_PACKAGE_IPTABLES_BPF_NFSYNPROXY
+ bool "bpfc and nfsynproxy"
+ select BR2_PACKAGE_LIBPCAP
+ help
+ Build bpf compiler and nfsynproxy configuration tool.
+
+config BR2_PACKAGE_IPTABLES_NFTABLES
+ bool "nftables compat"
+ # uses dlfcn
+ depends on !BR2_STATIC_LIBS
+ depends on BR2_USE_WCHAR
+ depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
+ select BR2_PACKAGE_LIBMNL
+ select BR2_PACKAGE_LIBNFTNL
+ help
+ Build nftables compat utilities.
+
+comment "nftables compat needs a toolchain w/ wchar, dynamic library, headers >= 3.4"
+ depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 || \
+ !BR2_USE_WCHAR || BR2_STATIC_LIBS
+
+endif
OpenPOWER on IntegriCloud