1config BR2_PACKAGE_NFTABLES 2 bool "nftables" 3 depends on BR2_USE_WCHAR 4 depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 5 select BR2_PACKAGE_LIBMNL 6 select BR2_PACKAGE_LIBNFTNL 7 help 8 nftables is the project that aims to replace the existing 9 {ip,ip6,arp,eb}tables framework. 10 Basically, this project provides a new packet filtering 11 framework, a new userspace utility and also a compatibility 12 layer for {ip,ip6}tables. 13 14 http://www.netfilter.org/projects/nftables/index.html 15 16# Legacy: this used to be handled in nftables.mk 17if BR2_PACKAGE_NFTABLES 18source "package/nftables/nftables-python/Config.in" 19endif 20 21comment "nftables needs a toolchain w/ wchar, headers >= 3.12" 22 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 23