aboutsummaryrefslogtreecommitdiff
path: root/networking/config.in
diff options
context:
space:
mode:
Diffstat (limited to 'networking/config.in')
-rw-r--r--networking/config.in92
1 files changed, 0 insertions, 92 deletions
diff --git a/networking/config.in b/networking/config.in
deleted file mode 100644
index de5b92064..000000000
--- a/networking/config.in
+++ /dev/null
@@ -1,92 +0,0 @@
1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6mainmenu_option next_comment
7comment 'Networking Utilities'
8
9bool 'Enable IPv6 support' CONFIG_FEATURE_IPV6
10bool 'hostname' CONFIG_HOSTNAME
11bool 'ifconfig' CONFIG_IFCONFIG
12if [ "$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
18fi
19bool 'ifupdown' CONFIG_IFUPDOWN
20if [ "$CONFIG_IFUPDOWN" = "y" ]; then
21 bool ' Enable support for IPv4' CONFIG_FEATURE_IFUPDOWN_IPV4
22 bool ' Enable support for IPv6 (requires ip command)' CONFIG_FEATURE_IFUPDOWN_IPV6
23 bool ' Enable support for IPX (requires ipx_interface command)' CONFIG_FEATURE_IFUPDOWN_IPX
24fi
25bool 'ip' CONFIG_IP
26if [ "$CONFIG_IP" = "y" ]; then
27 bool ' address' CONFIG_FEATURE_IP_ADDRESS
28 bool ' link' CONFIG_FEATURE_IP_LINK
29 bool ' route' CONFIG_FEATURE_IP_ROUTE
30 bool ' tunnel' CONFIG_FEATURE_IP_TUNNEL
31fi
32bool 'ipcalc' CONFIG_IPCALC
33if [ "$CONFIG_IPCALC" = "y" ]; then
34 bool ' Fancy IPCALC, more options, adds 300 bytes' CONFIG_FEATURE_IPCALC_FANCY
35fi
36bool 'ipaddr' CONFIG_IPADDR
37if [ "$CONFIG_IP" = "y" ] && [ "$CONFIG_IPADDR" = "y" ]; then
38 define_bool CONFIG_FEATURE_IP_ADDRESS y
39fi
40bool 'iplink' CONFIG_IPLINK
41if [ "$CONFIG_IP" = "y" ] && [ "$CONFIG_IPLINK" = "y" ]; then
42 define_bool CONFIG_FEATURE_IP_LINK y
43fi
44bool 'iproute' CONFIG_IPROUTE
45if [ "$CONFIG_IP" = "y" ] && [ "$CONFIG_IPROUTE" = "y" ]; then
46 define_bool CONFIG_FEATURE_IP_ROUTE y
47fi
48bool 'iptunnel' CONFIG_IPTUNNEL
49if [ "$CONFIG_IP" = "y" ] && [ "$CONFIG_IPTUNNEL" = "y" ]; then
50 define_bool CONFIG_FEATURE_IP_TUNNEL y
51fi
52bool 'nc' CONFIG_NC
53bool 'netstat' CONFIG_NETSTAT
54bool 'nslookup' CONFIG_NSLOOKUP
55bool 'ping' CONFIG_PING
56if [ "$CONFIG_PING" = "y" ]; then
57 bool ' Enable fancy ping output' CONFIG_FEATURE_FANCY_PING
58fi
59if [ "$CONFIG_FEATURE_IPV6" = "y" ]; then
60 bool 'ping6' CONFIG_PING6
61 if [ "$CONFIG_PING6" = "y" ]; then
62 bool ' Enable fancy ping6 output' CONFIG_FEATURE_FANCY_PING6
63 fi
64fi
65bool 'route' CONFIG_ROUTE
66bool 'telnet' CONFIG_TELNET
67if [ "$CONFIG_TELNET" = "y" ]; then
68 bool ' Pass TERM type to remote host' CONFIG_FEATURE_TELNET_TTYPE
69fi
70bool 'telnetd' CONFIG_TELNETD
71bool 'tftp' CONFIG_TFTP
72if [ "$CONFIG_TFTP" = "y" ]; then
73 bool ' Enable "get" command' CONFIG_FEATURE_TFTP_GET
74 bool ' Enable "put" command' CONFIG_FEATURE_TFTP_PUT
75 bool ' Enable "blocksize" option' CONFIG_FEATURE_TFTP_BLOCKSIZE
76 bool ' Enable debug' CONFIG_FEATURE_TFTP_DEBUG
77fi
78bool 'traceroute' CONFIG_TRACEROUTE
79if [ "$CONFIG_TRACEROUTE" = "y" ]; then
80 bool ' Enable verbose output' CONFIG_FEATURE_TRACEROUTE_VERBOSE
81 bool ' Enable SO_DEBUG option' CONFIG_FEATURE_TRACEROUTE_SO_DEBUG
82fi
83bool 'wget' CONFIG_WGET
84if [ "$CONFIG_WGET" = "y" ]; then
85 bool ' Enable a nifty process meter (+2k)' CONFIG_FEATURE_WGET_STATUSBAR
86 bool ' Enable HTTP authentication' CONFIG_FEATURE_WGET_AUTHENTICATION
87fi
88
89source networking/udhcp/config.in
90
91endmenu
92