| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.menu "Netfilter"depends on ADK_TARGET_WITH_NETconfig ADK_KERNEL_NETFILTER	boolconfig ADK_KERNEL_NETFILTER_ADVANCED	boolconfig ADK_KERNEL_BRIDGE_NETFILTER	boolconfig ADK_KERNEL_NETFILTER_XTABLES	tristate	select ADK_KERNEL_NETFILTER	select ADK_KERNEL_NETFILTER_ADVANCEDconfig ADK_KERNEL_NETFILTER_DEBUG	boolconfig ADK_KERNEL_IP_NF_MATCH_LAYER7_DEBUG	boolconfig ADK_KERNEL_IP_NF_TARGET_MIRROR	tristateconfig ADK_KERNEL_IP_NF_NAT_SNMP_BASIC	tristateconfig ADK_KERNEL_IP_NF_TARGET_DSCP	tristateconfig ADK_KERNEL_IP_NF_TARGET_MARK	tristateconfig ADK_KERNEL_IP_NF_TARGET_CLASSIFY	tristateconfig ADK_KERNEL_IP_NF_TARGET_IMQ	tristateconfig ADK_KERNEL_IP_NF_TARGET_CONNMARK	tristateconfig ADK_KERNEL_IP_NF_ARPTABLES	tristateconfig ADK_KERNEL_IP_NF_COMPAT_IPCHAINS	tristateconfig ADK_KERNEL_IP_NF_COMPAT_IPFWADM	tristateconfig ADK_KERNEL_IP6_NF_QUEUE	tristateconfig ADK_KERNEL_IP6_NF_IPTABLES	tristateconfig ADK_KERNEL_IP_ROUTE_FWMARK	boolconfig ADK_KERNEL_IP_NF_QUEUE	tristateconfig ADK_KERNEL_IP_NF_MATCH_TIME	tristateconfig ADK_KERNEL_IP_NF_MATCH_CONDITION	tristateconfig ADK_KERNEL_IP_NF_MATCH_DSCP	tristateconfig ADK_KERNEL_IP_NF_MATCH_AH_ESP	tristateconfig ADK_KERNEL_IP_NF_MATCH_LENGTH	tristateconfig ADK_KERNEL_IP_NF_MATCH_HELPER	tristate# cannot be ADK_KERNEL_IP_NF_MATCH_STATE because# netfilter is built as a module -> this'll always be# a module, tooconfig ADK_KERNEL_IP_NF_MATCH_STATE	tristate	select ADK_KERNEL_NETFILTER_XT_MATCH_STATEconfig ADK_KERNEL_NETFILTER_XT_NAT	tristateconfig ADK_KERNEL_NETFILTER_XT_MATCH_STATE	tristate# cannot be ADK_KERNEL_IP_NF_MATCH_CONNTRACK because# netfilter is built as a module -> this'll always be# a module, tooconfig ADK_KERNEL_NETFILTER_XT_MATCH_CONNTRACK	tristateconfig ADK_KERNEL_NETFILTER_XT_MATCH_CONNMARK	tristateconfig ADK_KERNEL_IP_NF_MATCH_UNCLEAN	tristateconfig ADK_KERNEL_IP_NF_MATCH_STRING	tristatemenu "Core Netfilter Configuration"source target/linux/config/Config.in.netfilter.coreendmenumenu "IPv4: Netfilter Configuration"source target/linux/config/Config.in.netfilter.ip4endmenumenu "IPv6: Netfilter Configuration"source target/linux/config/Config.in.netfilter.ip6endmenumenu "Ethernet bridge firewalling"source target/linux/config/Config.in.netfilter.ebtendmenuendmenu
 |