Fix broken link
[oweals/busybox.git] / networking / config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 mainmenu_option next_comment
7 comment 'Networking Utilities'
8
9 bool 'hostname'     CONFIG_HOSTNAME
10 bool 'ifconfig'     CONFIG_IFCONFIG
11 if [ "$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
17 fi
18 bool 'nc'           CONFIG_NC
19 bool 'netstat'      CONFIG_NETSTAT
20 bool 'nslookup'     CONFIG_NSLOOKUP
21 bool 'ping'         CONFIG_PING
22 if [ "$CONFIG_PING" = "y" ]; then
23     bool '  Enable fancy ping output'           CONFIG_FEATURE_FANCY_PING
24 fi
25 bool 'route'        CONFIG_ROUTE
26 bool 'telnet'       CONFIG_TELNET
27 if [ "$CONFIG_TELNET" = "y" ]; then
28     bool '  Pass TERM type to remote host'              CONFIG_FEATURE_TELNET_TTYPE
29 fi
30 bool 'tftp'         CONFIG_TFTP
31 if [ "$CONFIG_TFTP" = "y" ]; then
32     bool '  Enable "get" command'                       CONFIG_FEATURE_TFTP_GET
33     bool '  Enable "put" command'                       CONFIG_FEATURE_TFTP_PUT
34     bool '  Enable "blocksize" option'          CONFIG_FEATURE_TFTP_BLOCKSIZE
35     bool '  Enable debug'                                       CONFIG_FEATURE_TFTP_DEBUG
36 fi
37 bool 'traceroute'   CONFIG_TRACEROUTE
38 if [ "$CONFIG_TRACEROUTE" = "y" ]; then
39     bool '  Enable verbose output'                      CONFIG_FEATURE_TRACEROUTE_VERBOSE
40     bool '  Enable SO_DEBUG option'     CONFIG_FEATURE_TRACEROUTE_SO_DEBUG
41 fi
42 bool 'wget'         CONFIG_WGET
43 if [ "$CONFIG_WGET" = "y" ]; then
44     bool '  Enable a nifty process meter (+2k)' CONFIG_FEATURE_WGET_STATUSBAR
45         bool '  Enable HTTP authentication'                     CONFIG_FEATURE_WGET_AUTHENTICATION
46 fi
47
48 endmenu
49