Move #define MAXLINE so this compiles without circ buffers.
[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 'Enable IPv6 support'                                              CONFIG_FEATURE_IPV6
10 bool 'hostname'     CONFIG_HOSTNAME
11 bool 'ifconfig'     CONFIG_IFCONFIG
12 if [ "$CONFIG_IFCONFIG" = "y" ]; then
13     bool '  Enable status reporting output (+7k)'                                       CONFIG_FEATURE_IFCONFIG_STATUS  
14     bool '  Enable slip-specific options "keepalive" and "outfill"'     CONFIG_FEATURE_IFCONFIG_SLIP
15     bool '  Enable options "mem_start", "io_addr", and "irq"'           CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
16     bool '  Enable option "hw" (ether only)'                                            CONFIG_FEATURE_IFCONFIG_HW 
17     bool '  Set the broadcast automatically'                                    CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS
18 fi
19 bool 'nc'           CONFIG_NC
20 bool 'netstat'      CONFIG_NETSTAT
21 bool 'nslookup'     CONFIG_NSLOOKUP
22 bool 'ping'         CONFIG_PING
23 if [ "$CONFIG_PING" = "y" ]; then
24     bool '  Enable fancy ping output'           CONFIG_FEATURE_FANCY_PING
25 fi
26 if [ "$CONFIG_FEATURE_IPV6" = "y" ]; then
27     bool 'ping6'            CONFIG_PING6
28     if [ "$CONFIG_PING6" = "y" ]; then
29         bool '  Enable fancy ping6 output'              CONFIG_FEATURE_FANCY_PING6
30     fi
31 fi
32 bool 'route'        CONFIG_ROUTE
33 bool 'telnet'       CONFIG_TELNET
34 if [ "$CONFIG_TELNET" = "y" ]; then
35     bool '  Pass TERM type to remote host'              CONFIG_FEATURE_TELNET_TTYPE
36 fi
37 bool 'tftp'         CONFIG_TFTP
38 if [ "$CONFIG_TFTP" = "y" ]; then
39     bool '  Enable "get" command'                       CONFIG_FEATURE_TFTP_GET
40     bool '  Enable "put" command'                       CONFIG_FEATURE_TFTP_PUT
41     bool '  Enable "blocksize" option'          CONFIG_FEATURE_TFTP_BLOCKSIZE
42     bool '  Enable debug'                                       CONFIG_FEATURE_TFTP_DEBUG
43 fi
44 bool 'traceroute'   CONFIG_TRACEROUTE
45 if [ "$CONFIG_TRACEROUTE" = "y" ]; then
46     bool '  Enable verbose output'                      CONFIG_FEATURE_TRACEROUTE_VERBOSE
47     bool '  Enable SO_DEBUG option'     CONFIG_FEATURE_TRACEROUTE_SO_DEBUG
48 fi
49 bool 'wget'         CONFIG_WGET
50 if [ "$CONFIG_WGET" = "y" ]; then
51     bool '  Enable a nifty process meter (+2k)' CONFIG_FEATURE_WGET_STATUSBAR
52         bool '  Enable HTTP authentication'                     CONFIG_FEATURE_WGET_AUTHENTICATION
53 fi
54
55 endmenu
56