aboutsummaryrefslogtreecommitdiffstats
path: root/package/iptables
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2005-11-05 02:16:36 +0000
committerNicolas Thill <nico@openwrt.org>2005-11-05 02:16:36 +0000
commitfdffe64b4645d2f44cf8876681d41ac4d2ef1561 (patch)
tree023aa6c89150198db369868cca93b44e19180e28 /package/iptables
parent161a21c51c8f3faa9b7608a420c074402d57f048 (diff)
downloadmaster-187ad058-fdffe64b4645d2f44cf8876681d41ac4d2ef1561.tar.gz
master-187ad058-fdffe64b4645d2f44cf8876681d41ac4d2ef1561.tar.bz2
master-187ad058-fdffe64b4645d2f44cf8876681d41ac4d2ef1561.zip
reorganize/rationalize/format package menuconfig,
make updatedd modular git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2333 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/iptables')
-rw-r--r--package/iptables/Config.in35
1 files changed, 26 insertions, 9 deletions
diff --git a/package/iptables/Config.in b/package/iptables/Config.in
index f55b29674f..9529cd5cca 100644
--- a/package/iptables/Config.in
+++ b/package/iptables/Config.in
@@ -1,32 +1,49 @@
+menu "iptables.......................... IPv4 / IPv6 firewall administration"
+
+config BR2_COMPILE_IPTABLES
+ bool
+ default n
+ depends BR2_PACKAGE_IPTABLES || BR2_PACKAGE_IP6TABLES
+
config BR2_PACKAGE_IPTABLES
- tristate "iptables - IPv4 firewall administration tool"
+ prompt "iptables.......................... IPv4 firewall administration tool"
+ tristate
default y
+ select BR2_COMPILE_IPTABLES
help
- Linux kernel (2.4+) firewall, NAT, and packet mangling tools.
+ IPv4 firewall, NAT, and packet mangling tools.
http://www.iptables.org/
-
config BR2_PACKAGE_IPTABLES_UTILS
- tristate "iptables - Save and restore utilities"
+ prompt "iptables-utils.................. Save and restore utilities"
+ tristate
default m if CONFIG_DEVEL
depends BR2_PACKAGE_IPTABLES
help
iptables-save and iptables-restore
+
+ http://www.iptables.org/
config BR2_PACKAGE_IPTABLES_EXTRA
- tristate "extra modules - Extra modules not found elsewhere"
+ prompt "iptables-extra.................. Extra modules not found elsewhere"
+ tristate
default m if CONFIG_DEVEL
depends BR2_PACKAGE_IPTABLES
help
Extra modules for iptables (kernel and user space)
+
+ http://www.iptables.org/
config BR2_PACKAGE_IP6TABLES
- tristate "ip6tables - IPv6 firewall administration tool"
+ prompt "ip6tables......................... IPv6 firewall administration tool"
+ tristate
default m if CONFIG_DEVEL
- depends BR2_PACKAGE_IPTABLES
+ select BR2_COMPILE_IPTABLES
select BR2_PACKAGE_KMOD_IPV6
help
- IPv6 firewalling
-
+ IPv6 firewall, NAT, and packet mangling tools.
+
+ http://www.iptables.org/
+endmenu