Remove mapping option, its should always be used
[oweals/busybox.git] / networking / config.in
index 1edc1de7edc2e6c6a436a6ab51af13023a9a941b..d62a6e425ff50ab71064e6238b7ca58b964b7daa 100644 (file)
@@ -16,6 +16,23 @@ 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
@@ -34,6 +51,7 @@ 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
@@ -52,5 +70,7 @@ if [ "$CONFIG_WGET" = "y" ]; then
        bool '  Enable HTTP authentication'                     CONFIG_FEATURE_WGET_AUTHENTICATION
 fi
 
+source networking/udhcp/config.in
+
 endmenu