Remove mapping option, its should always be used
[oweals/busybox.git] / networking / config.in
index 0636a70992dfb1b32253fc5fb7e1b241abcfc263..d62a6e425ff50ab71064e6238b7ca58b964b7daa 100644 (file)
@@ -6,6 +6,7 @@
 mainmenu_option next_comment
 comment 'Networking Utilities'
 
+bool 'Enable IPv6 support'                                             CONFIG_FEATURE_IPV6
 bool 'hostname'            CONFIG_HOSTNAME
 bool 'ifconfig'            CONFIG_IFCONFIG
 if [ "$CONFIG_IFCONFIG" = "y" ]; then
@@ -15,17 +16,42 @@ if [ "$CONFIG_IFCONFIG" = "y" ]; then
     bool '  Enable option "hw" (ether only)'                                           CONFIG_FEATURE_IFCONFIG_HW 
     bool '  Set the broadcast automatically'                                   CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
 fi
+bool 'ifupdown'            CONFIG_IFUPDOWN
+if [ "$CONFIG_IFUPDOWN" = "y" ]; then
+    bool '  Enable support for IPv4'   CONFIG_FEATURE_IFUPDOWN_IPV4
+    bool '  Enable support for IPv6 (requires ip command)' CONFIG_FEATURE_IFUPDOWN_IPV6
+    bool '  Enable support for IPX (requires ipx_interface command)' CONFIG_FEATURE_IFUPDOWN_IPX
+fi
+bool 'ip'          CONFIG_IP
+if [ "$CONFIG_IP" = "y" ]; then
+    bool '  address'           CONFIG_FEATURE_IP_ADDRESS
+    bool '  link'              CONFIG_FEATURE_IP_LINK
+    bool '  route'             CONFIG_FEATURE_IP_ROUTE
+    bool '  tunnel'            CONFIG_FEATURE_IP_TUNNEL
+fi
+bool 'ipcalc'      CONFIG_IPCALC
+if [ "$CONFIG_IPCALC" = "y" ]; then
+    bool '  Fancy IPCALC, more options, adds 300 bytes'        CONFIG_FEATURE_IPCALC_FANCY
+fi
 bool 'nc'          CONFIG_NC
+bool 'netstat'     CONFIG_NETSTAT
 bool 'nslookup'            CONFIG_NSLOOKUP
 bool 'ping'        CONFIG_PING
 if [ "$CONFIG_PING" = "y" ]; then
     bool '  Enable fancy ping output'          CONFIG_FEATURE_FANCY_PING
 fi
+if [ "$CONFIG_FEATURE_IPV6" = "y" ]; then
+    bool 'ping6'           CONFIG_PING6
+    if [ "$CONFIG_PING6" = "y" ]; then
+        bool '  Enable fancy ping6 output'             CONFIG_FEATURE_FANCY_PING6
+    fi
+fi
 bool 'route'       CONFIG_ROUTE
 bool 'telnet'      CONFIG_TELNET
 if [ "$CONFIG_TELNET" = "y" ]; then
     bool '  Pass TERM type to remote host'             CONFIG_FEATURE_TELNET_TTYPE
 fi
+bool 'telnetd'      CONFIG_TELNETD
 bool 'tftp'        CONFIG_TFTP
 if [ "$CONFIG_TFTP" = "y" ]; then
     bool '  Enable "get" command'                      CONFIG_FEATURE_TFTP_GET
@@ -44,5 +70,7 @@ if [ "$CONFIG_WGET" = "y" ]; then
        bool '  Enable HTTP authentication'                     CONFIG_FEATURE_WGET_AUTHENTICATION
 fi
 
+source networking/udhcp/config.in
+
 endmenu