From: Eric Leblond Date: Sun, 29 Dec 2013 10:01:29 +0000 (+0100) Subject: netfilter: select NFNETLINK when enabling NF_TABLES X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5f291c2869a08a63dbdc9de3e13ac5f2d5ed8d47;p=linux-beck.git netfilter: select NFNETLINK when enabling NF_TABLES In Kconfig, nf_tables depends on NFNETLINK so building nf_tables as a module or inside kernel depends on the state of NFNETLINK inside the kernel config. If someone wants to build nf_tables inside the kernel, it is necessary to also build NFNETLINK inside the kernel. But NFNETLINK can not be set in the menu so it is necessary to toggle other nfnetlink subsystems such as logging and nfacct to see the nf_tables switch. This patch changes the dependency from 'depend' to 'select' inside Kconfig to allow to set the build of nftables as modules or inside kernel independently. Signed-off-by: Eric Leblond Signed-off-by: Pablo Neira Ayuso --- diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig index 4371c9819d97..01f9f64c4cec 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig @@ -414,7 +414,7 @@ config NETFILTER_SYNPROXY endif # NF_CONNTRACK config NF_TABLES - depends on NETFILTER_NETLINK + select NETFILTER_NETLINK tristate "Netfilter nf_tables support" config NFT_EXTHDR