aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-31 09:54:29 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-31 09:54:29 +0000
commit2c669dd108cacb64054a57afb84d2d81e1872c97 (patch)
treef5621651121f7f4872a94abdaa761fcfaa93f2c2
parentce22feea01132e8316213d2cb9b7aa06885f7234 (diff)
downloadbusybox-w32-2c669dd108cacb64054a57afb84d2d81e1872c97.tar.gz
busybox-w32-2c669dd108cacb64054a57afb84d2d81e1872c97.tar.bz2
busybox-w32-2c669dd108cacb64054a57afb84d2d81e1872c97.zip
patch from Giulio Orsero <giulioo@pobox.com>
-rw-r--r--networking/config.in27
1 files changed, 27 insertions, 0 deletions
diff --git a/networking/config.in b/networking/config.in
index 577d925c3..0636a7099 100644
--- a/networking/config.in
+++ b/networking/config.in
@@ -8,14 +8,41 @@ comment 'Networking Utilities'
8 8
9bool 'hostname' CONFIG_HOSTNAME 9bool 'hostname' CONFIG_HOSTNAME
10bool 'ifconfig' CONFIG_IFCONFIG 10bool 'ifconfig' CONFIG_IFCONFIG
11if [ "$CONFIG_IFCONFIG" = "y" ]; then
12 bool ' Enable status reporting output (+7k)' CONFIG_FEATURE_IFCONFIG_STATUS
13 bool ' Enable slip-specific options "keepalive" and "outfill"' CONFIG_FEATURE_IFCONFIG_SLIP
14 bool ' Enable options "mem_start", "io_addr", and "irq"' CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
15 bool ' Enable option "hw" (ether only)' CONFIG_FEATURE_IFCONFIG_HW
16 bool ' Set the broadcast automatically' CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
17fi
11bool 'nc' CONFIG_NC 18bool 'nc' CONFIG_NC
12bool 'nslookup' CONFIG_NSLOOKUP 19bool 'nslookup' CONFIG_NSLOOKUP
13bool 'ping' CONFIG_PING 20bool 'ping' CONFIG_PING
21if [ "$CONFIG_PING" = "y" ]; then
22 bool ' Enable fancy ping output' CONFIG_FEATURE_FANCY_PING
23fi
14bool 'route' CONFIG_ROUTE 24bool 'route' CONFIG_ROUTE
15bool 'telnet' CONFIG_TELNET 25bool 'telnet' CONFIG_TELNET
26if [ "$CONFIG_TELNET" = "y" ]; then
27 bool ' Pass TERM type to remote host' CONFIG_FEATURE_TELNET_TTYPE
28fi
16bool 'tftp' CONFIG_TFTP 29bool 'tftp' CONFIG_TFTP
30if [ "$CONFIG_TFTP" = "y" ]; then
31 bool ' Enable "get" command' CONFIG_FEATURE_TFTP_GET
32 bool ' Enable "put" command' CONFIG_FEATURE_TFTP_PUT
33 bool ' Enable "blocksize" option' CONFIG_FEATURE_TFTP_BLOCKSIZE
34 bool ' Enable debug' CONFIG_FEATURE_TFTP_DEBUG
35fi
17bool 'traceroute' CONFIG_TRACEROUTE 36bool 'traceroute' CONFIG_TRACEROUTE
37if [ "$CONFIG_TRACEROUTE" = "y" ]; then
38 bool ' Enable verbose output' CONFIG_FEATURE_TRACEROUTE_VERBOSE
39 bool ' Enable SO_DEBUG option' CONFIG_FEATURE_TRACEROUTE_SO_DEBUG
40fi
18bool 'wget' CONFIG_WGET 41bool 'wget' CONFIG_WGET
42if [ "$CONFIG_WGET" = "y" ]; then
43 bool ' Enable a nifty process meter (+2k)' CONFIG_FEATURE_WGET_STATUSBAR
44 bool ' Enable HTTP authentication' CONFIG_FEATURE_WGET_AUTHENTICATION
45fi
19 46
20endmenu 47endmenu
21 48