aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-06-06 04:14:28 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-06-06 04:14:28 +0200
commit2f32bf8be63f70125049402ba43101d8c6083d46 (patch)
tree8d01d287b58308bbb0bc6748c27357fae0a7aa12 /networking
parentf0f94700610eba964441ce4a112134e03c76eb89 (diff)
downloadbusybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.tar.gz
busybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.tar.bz2
busybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.zip
remove defconfig. Now "make defconfig" simply uses defaults from Config.in
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/Config.src156
-rw-r--r--networking/udhcp/Config.src16
2 files changed, 86 insertions, 86 deletions
diff --git a/networking/Config.src b/networking/Config.src
index ce7166f98..eb8dc1ce2 100644
--- a/networking/Config.src
+++ b/networking/Config.src
@@ -7,7 +7,7 @@ menu "Networking Utilities"
7 7
8config FEATURE_IPV6 8config FEATURE_IPV6
9 bool "Enable IPv6 support" 9 bool "Enable IPv6 support"
10 default n 10 default y
11 help 11 help
12 Enable IPv6 support in busybox. 12 Enable IPv6 support in busybox.
13 This adds IPv6 support in the networking applets. 13 This adds IPv6 support in the networking applets.
@@ -48,26 +48,26 @@ config VERBOSE_RESOLUTION_ERRORS
48 48
49config ARP 49config ARP
50 bool "arp" 50 bool "arp"
51 default n 51 default y
52 help 52 help
53 Manipulate the system ARP cache. 53 Manipulate the system ARP cache.
54 54
55config ARPING 55config ARPING
56 bool "arping" 56 bool "arping"
57 default n 57 default y
58 help 58 help
59 Ping hosts by ARP packets. 59 Ping hosts by ARP packets.
60 60
61config BRCTL 61config BRCTL
62 bool "brctl" 62 bool "brctl"
63 default n 63 default y
64 help 64 help
65 Manage ethernet bridges. 65 Manage ethernet bridges.
66 Supports addbr/delbr and addif/delif. 66 Supports addbr/delbr and addif/delif.
67 67
68config FEATURE_BRCTL_FANCY 68config FEATURE_BRCTL_FANCY
69 bool "Fancy options" 69 bool "Fancy options"
70 default n 70 default y
71 depends on BRCTL 71 depends on BRCTL
72 help 72 help
73 Add support for extended option like: 73 Add support for extended option like:
@@ -78,7 +78,7 @@ config FEATURE_BRCTL_FANCY
78 78
79config FEATURE_BRCTL_SHOW 79config FEATURE_BRCTL_SHOW
80 bool "Support show, showmac and showstp" 80 bool "Support show, showmac and showstp"
81 default n 81 default y
82 depends on BRCTL && FEATURE_BRCTL_FANCY 82 depends on BRCTL && FEATURE_BRCTL_FANCY
83 help 83 help
84 Add support for option which prints the current config: 84 Add support for option which prints the current config:
@@ -86,19 +86,19 @@ config FEATURE_BRCTL_SHOW
86 86
87config DNSD 87config DNSD
88 bool "dnsd" 88 bool "dnsd"
89 default n 89 default y
90 help 90 help
91 Small and static DNS server daemon. 91 Small and static DNS server daemon.
92 92
93config ETHER_WAKE 93config ETHER_WAKE
94 bool "ether-wake" 94 bool "ether-wake"
95 default n 95 default y
96 help 96 help
97 Send a magic packet to wake up sleeping machines. 97 Send a magic packet to wake up sleeping machines.
98 98
99config FAKEIDENTD 99config FAKEIDENTD
100 bool "fakeidentd" 100 bool "fakeidentd"
101 default n 101 default y
102 select FEATURE_SYSLOG 102 select FEATURE_SYSLOG
103 help 103 help
104 fakeidentd listens on the ident port and returns a predefined 104 fakeidentd listens on the ident port and returns a predefined
@@ -106,7 +106,7 @@ config FAKEIDENTD
106 106
107config FTPD 107config FTPD
108 bool "ftpd" 108 bool "ftpd"
109 default n 109 default y
110 help 110 help
111 simple FTP daemon. You have to run it via inetd. 111 simple FTP daemon. You have to run it via inetd.
112 112
@@ -130,38 +130,38 @@ config FEATURE_FTPD_ACCEPT_BROKEN_LIST
130 130
131config FTPGET 131config FTPGET
132 bool "ftpget" 132 bool "ftpget"
133 default n 133 default y
134 help 134 help
135 Retrieve a remote file via FTP. 135 Retrieve a remote file via FTP.
136 136
137config FTPPUT 137config FTPPUT
138 bool "ftpput" 138 bool "ftpput"
139 default n 139 default y
140 help 140 help
141 Store a remote file via FTP. 141 Store a remote file via FTP.
142 142
143config FEATURE_FTPGETPUT_LONG_OPTIONS 143config FEATURE_FTPGETPUT_LONG_OPTIONS
144 bool "Enable long options in ftpget/ftpput" 144 bool "Enable long options in ftpget/ftpput"
145 default n 145 default y
146 depends on LONG_OPTS && (FTPGET || FTPPUT) 146 depends on LONG_OPTS && (FTPGET || FTPPUT)
147 help 147 help
148 Support long options for the ftpget/ftpput applet. 148 Support long options for the ftpget/ftpput applet.
149 149
150config HOSTNAME 150config HOSTNAME
151 bool "hostname" 151 bool "hostname"
152 default n 152 default y
153 help 153 help
154 Show or set the system's host name. 154 Show or set the system's host name.
155 155
156config HTTPD 156config HTTPD
157 bool "httpd" 157 bool "httpd"
158 default n 158 default y
159 help 159 help
160 Serve web pages via an HTTP server. 160 Serve web pages via an HTTP server.
161 161
162config FEATURE_HTTPD_RANGES 162config FEATURE_HTTPD_RANGES
163 bool "Support 'Ranges:' header" 163 bool "Support 'Ranges:' header"
164 default n 164 default y
165 depends on HTTPD 165 depends on HTTPD
166 help 166 help
167 Makes httpd emit "Accept-Ranges: bytes" header and understand 167 Makes httpd emit "Accept-Ranges: bytes" header and understand
@@ -170,7 +170,7 @@ config FEATURE_HTTPD_RANGES
170 170
171config FEATURE_HTTPD_USE_SENDFILE 171config FEATURE_HTTPD_USE_SENDFILE
172 bool "Use sendfile system call" 172 bool "Use sendfile system call"
173 default n 173 default y
174 depends on HTTPD 174 depends on HTTPD
175 help 175 help
176 When enabled, httpd will use the kernel sendfile() function 176 When enabled, httpd will use the kernel sendfile() function
@@ -178,7 +178,7 @@ config FEATURE_HTTPD_USE_SENDFILE
178 178
179config FEATURE_HTTPD_SETUID 179config FEATURE_HTTPD_SETUID
180 bool "Enable -u <user> option" 180 bool "Enable -u <user> option"
181 default n 181 default y
182 depends on HTTPD 182 depends on HTTPD
183 help 183 help
184 This option allows the server to run as a specific user 184 This option allows the server to run as a specific user
@@ -196,7 +196,7 @@ config FEATURE_HTTPD_BASIC_AUTH
196 196
197config FEATURE_HTTPD_AUTH_MD5 197config FEATURE_HTTPD_AUTH_MD5
198 bool "Support MD5 crypted passwords for http Authentication" 198 bool "Support MD5 crypted passwords for http Authentication"
199 default n 199 default y
200 depends on FEATURE_HTTPD_BASIC_AUTH 200 depends on FEATURE_HTTPD_BASIC_AUTH
201 help 201 help
202 Enables basic per URL authentication from /etc/httpd.conf 202 Enables basic per URL authentication from /etc/httpd.conf
@@ -212,7 +212,7 @@ config FEATURE_HTTPD_CGI
212 212
213config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR 213config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
214 bool "Support for running scripts through an interpreter" 214 bool "Support for running scripts through an interpreter"
215 default n 215 default y
216 depends on FEATURE_HTTPD_CGI 216 depends on FEATURE_HTTPD_CGI
217 help 217 help
218 This option enables support for running scripts through an 218 This option enables support for running scripts through an
@@ -223,7 +223,7 @@ config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
223 223
224config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV 224config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
225 bool "Set REMOTE_PORT environment variable for CGI" 225 bool "Set REMOTE_PORT environment variable for CGI"
226 default n 226 default y
227 depends on FEATURE_HTTPD_CGI 227 depends on FEATURE_HTTPD_CGI
228 help 228 help
229 Use of this option can assist scripts in generating 229 Use of this option can assist scripts in generating
@@ -241,7 +241,7 @@ config FEATURE_HTTPD_ENCODE_URL_STR
241 241
242config FEATURE_HTTPD_ERROR_PAGES 242config FEATURE_HTTPD_ERROR_PAGES
243 bool "Support for custom error pages" 243 bool "Support for custom error pages"
244 default n 244 default y
245 depends on HTTPD 245 depends on HTTPD
246 help 246 help
247 This option allows you to define custom error pages in 247 This option allows you to define custom error pages in
@@ -254,7 +254,7 @@ config FEATURE_HTTPD_ERROR_PAGES
254 254
255config FEATURE_HTTPD_PROXY 255config FEATURE_HTTPD_PROXY
256 bool "Support for reverse proxy" 256 bool "Support for reverse proxy"
257 default n 257 default y
258 depends on HTTPD 258 depends on HTTPD
259 help 259 help
260 This option allows you to define URLs that will be forwarded 260 This option allows you to define URLs that will be forwarded
@@ -266,7 +266,7 @@ config FEATURE_HTTPD_PROXY
266 266
267config IFCONFIG 267config IFCONFIG
268 bool "ifconfig" 268 bool "ifconfig"
269 default n 269 default y
270 help 270 help
271 Ifconfig is used to configure the kernel-resident network interfaces. 271 Ifconfig is used to configure the kernel-resident network interfaces.
272 272
@@ -280,7 +280,7 @@ config FEATURE_IFCONFIG_STATUS
280 280
281config FEATURE_IFCONFIG_SLIP 281config FEATURE_IFCONFIG_SLIP
282 bool "Enable slip-specific options \"keepalive\" and \"outfill\"" 282 bool "Enable slip-specific options \"keepalive\" and \"outfill\""
283 default n 283 default y
284 depends on IFCONFIG 284 depends on IFCONFIG
285 help 285 help
286 Allow "keepalive" and "outfill" support for SLIP. If you're not 286 Allow "keepalive" and "outfill" support for SLIP. If you're not
@@ -288,7 +288,7 @@ config FEATURE_IFCONFIG_SLIP
288 288
289config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ 289config FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ
290 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\"" 290 bool "Enable options \"mem_start\", \"io_addr\", and \"irq\""
291 default n 291 default y
292 depends on IFCONFIG 292 depends on IFCONFIG
293 help 293 help
294 Allow the start address for shared memory, start address for I/O, 294 Allow the start address for shared memory, start address for I/O,
@@ -305,7 +305,7 @@ config FEATURE_IFCONFIG_HW
305 305
306config FEATURE_IFCONFIG_BROADCAST_PLUS 306config FEATURE_IFCONFIG_BROADCAST_PLUS
307 bool "Set the broadcast automatically" 307 bool "Set the broadcast automatically"
308 default n 308 default y
309 depends on IFCONFIG 309 depends on IFCONFIG
310 help 310 help
311 Setting this will make ifconfig attempt to find the broadcast 311 Setting this will make ifconfig attempt to find the broadcast
@@ -313,20 +313,20 @@ config FEATURE_IFCONFIG_BROADCAST_PLUS
313 313
314config IFENSLAVE 314config IFENSLAVE
315 bool "ifenslave" 315 bool "ifenslave"
316 default n 316 default y
317 help 317 help
318 Userspace application to bind several interfaces 318 Userspace application to bind several interfaces
319 to a logical interface (use with kernel bonding driver). 319 to a logical interface (use with kernel bonding driver).
320 320
321config IFPLUGD 321config IFPLUGD
322 bool "ifplugd" 322 bool "ifplugd"
323 default n 323 default y
324 help 324 help
325 Network interface plug detection daemon. 325 Network interface plug detection daemon.
326 326
327config IFUPDOWN 327config IFUPDOWN
328 bool "ifupdown" 328 bool "ifupdown"
329 default n 329 default y
330 help 330 help
331 Activate or deactivate the specified interfaces. This applet makes 331 Activate or deactivate the specified interfaces. This applet makes
332 use of either "ifconfig" and "route" or the "ip" command to actually 332 use of either "ifconfig" and "route" or the "ip" command to actually
@@ -353,7 +353,7 @@ config IFUPDOWN_IFSTATE_PATH
353 353
354config FEATURE_IFUPDOWN_IP 354config FEATURE_IFUPDOWN_IP
355 bool "Use ip applet" 355 bool "Use ip applet"
356 default n 356 default y
357 depends on IFUPDOWN 357 depends on IFUPDOWN
358 help 358 help
359 Use the iproute "ip" command to implement "ifup" and "ifdown", rather 359 Use the iproute "ip" command to implement "ifup" and "ifdown", rather
@@ -375,7 +375,7 @@ config FEATURE_IFUPDOWN_IP_BUILTIN
375 375
376config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN 376config FEATURE_IFUPDOWN_IFCONFIG_BUILTIN
377 bool "Use busybox ifconfig and route applets" 377 bool "Use busybox ifconfig and route applets"
378 default y 378 default n
379 depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP 379 depends on IFUPDOWN && !FEATURE_IFUPDOWN_IP
380 select IFCONFIG 380 select IFCONFIG
381 select ROUTE 381 select ROUTE
@@ -396,7 +396,7 @@ config FEATURE_IFUPDOWN_IPV4
396 396
397config FEATURE_IFUPDOWN_IPV6 397config FEATURE_IFUPDOWN_IPV6
398 bool "Support for IPv6" 398 bool "Support for IPv6"
399 default n 399 default y
400 depends on IFUPDOWN && FEATURE_IPV6 400 depends on IFUPDOWN && FEATURE_IPV6
401 help 401 help
402 If you need support for IPv6, turn this option on. 402 If you need support for IPv6, turn this option on.
@@ -404,7 +404,7 @@ config FEATURE_IFUPDOWN_IPV6
404### UNUSED 404### UNUSED
405###config FEATURE_IFUPDOWN_IPX 405###config FEATURE_IFUPDOWN_IPX
406### bool "Support for IPX" 406### bool "Support for IPX"
407### default n 407### default y
408### depends on IFUPDOWN 408### depends on IFUPDOWN
409### help 409### help
410### If this option is selected you can use busybox to work with IPX 410### If this option is selected you can use busybox to work with IPX
@@ -412,7 +412,7 @@ config FEATURE_IFUPDOWN_IPV6
412 412
413config FEATURE_IFUPDOWN_MAPPING 413config FEATURE_IFUPDOWN_MAPPING
414 bool "Enable mapping support" 414 bool "Enable mapping support"
415 default n 415 default y
416 depends on IFUPDOWN 416 depends on IFUPDOWN
417 help 417 help
418 This enables support for the "mapping" stanza, unless you have 418 This enables support for the "mapping" stanza, unless you have
@@ -430,7 +430,7 @@ config FEATURE_IFUPDOWN_EXTERNAL_DHCP
430 430
431config INETD 431config INETD
432 bool "inetd" 432 bool "inetd"
433 default n 433 default y
434 select FEATURE_SYSLOG 434 select FEATURE_SYSLOG
435 help 435 help
436 Internet superserver daemon 436 Internet superserver daemon
@@ -472,7 +472,7 @@ config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
472 472
473config FEATURE_INETD_RPC 473config FEATURE_INETD_RPC
474 bool "Support RPC services" 474 bool "Support RPC services"
475 default n 475 default y
476 depends on INETD 476 depends on INETD
477 select FEATURE_HAVE_RPC 477 select FEATURE_HAVE_RPC
478 help 478 help
@@ -480,7 +480,7 @@ config FEATURE_INETD_RPC
480 480
481config IP 481config IP
482 bool "ip" 482 bool "ip"
483 default n 483 default y
484 help 484 help
485 The "ip" applet is a TCP/IP interface configuration and routing 485 The "ip" applet is a TCP/IP interface configuration and routing
486 utility. You generally don't need "ip" to use busybox with 486 utility. You generally don't need "ip" to use busybox with
@@ -509,21 +509,21 @@ config FEATURE_IP_ROUTE
509 509
510config FEATURE_IP_TUNNEL 510config FEATURE_IP_TUNNEL
511 bool "ip tunnel" 511 bool "ip tunnel"
512 default n 512 default y
513 depends on IP 513 depends on IP
514 help 514 help
515 Add support for tunneling commands to "ip". 515 Add support for tunneling commands to "ip".
516 516
517config FEATURE_IP_RULE 517config FEATURE_IP_RULE
518 bool "ip rule" 518 bool "ip rule"
519 default n 519 default y
520 depends on IP 520 depends on IP
521 help 521 help
522 Add support for rule commands to "ip". 522 Add support for rule commands to "ip".
523 523
524config FEATURE_IP_SHORT_FORMS 524config FEATURE_IP_SHORT_FORMS
525 bool "Support short forms of ip commands" 525 bool "Support short forms of ip commands"
526 default n 526 default y
527 depends on IP 527 depends on IP
528 help 528 help
529 Also support short-form of ip <OBJECT> commands: 529 Also support short-form of ip <OBJECT> commands:
@@ -573,7 +573,7 @@ config IPRULE
573 573
574config IPCALC 574config IPCALC
575 bool "ipcalc" 575 bool "ipcalc"
576 default n 576 default y
577 help 577 help
578 ipcalc takes an IP address and netmask and calculates the 578 ipcalc takes an IP address and netmask and calculates the
579 resulting broadcast, network, and host range. 579 resulting broadcast, network, and host range.
@@ -588,14 +588,14 @@ config FEATURE_IPCALC_FANCY
588 588
589config FEATURE_IPCALC_LONG_OPTIONS 589config FEATURE_IPCALC_LONG_OPTIONS
590 bool "Enable long options" 590 bool "Enable long options"
591 default n 591 default y
592 depends on IPCALC && LONG_OPTS 592 depends on IPCALC && LONG_OPTS
593 help 593 help
594 Support long options for the ipcalc applet. 594 Support long options for the ipcalc applet.
595 595
596config NAMEIF 596config NAMEIF
597 bool "nameif" 597 bool "nameif"
598 default n 598 default y
599 select FEATURE_SYSLOG 599 select FEATURE_SYSLOG
600 help 600 help
601 nameif is used to rename network interface by its MAC address. 601 nameif is used to rename network interface by its MAC address.
@@ -610,7 +610,7 @@ config NAMEIF
610 610
611config FEATURE_NAMEIF_EXTENDED 611config FEATURE_NAMEIF_EXTENDED
612 bool "Extended nameif" 612 bool "Extended nameif"
613 default n 613 default y
614 depends on NAMEIF 614 depends on NAMEIF
615 help 615 help
616 This extends the nameif syntax to support the bus_info and driver 616 This extends the nameif syntax to support the bus_info and driver
@@ -623,21 +623,21 @@ config FEATURE_NAMEIF_EXTENDED
623 623
624config NC 624config NC
625 bool "nc" 625 bool "nc"
626 default n 626 default y
627 help 627 help
628 A simple Unix utility which reads and writes data across network 628 A simple Unix utility which reads and writes data across network
629 connections. 629 connections.
630 630
631config NC_SERVER 631config NC_SERVER
632 bool "Netcat server options (-l)" 632 bool "Netcat server options (-l)"
633 default n 633 default y
634 depends on NC 634 depends on NC
635 help 635 help
636 Allow netcat to act as a server. 636 Allow netcat to act as a server.
637 637
638config NC_EXTRA 638config NC_EXTRA
639 bool "Netcat extensions (-eiw and filename)" 639 bool "Netcat extensions (-eiw and filename)"
640 default n 640 default y
641 depends on NC 641 depends on NC
642 help 642 help
643 Add -e (support for executing the rest of the command line after 643 Add -e (support for executing the rest of the command line after
@@ -646,13 +646,13 @@ config NC_EXTRA
646 646
647config NETSTAT 647config NETSTAT
648 bool "netstat" 648 bool "netstat"
649 default n 649 default y
650 help 650 help
651 netstat prints information about the Linux networking subsystem. 651 netstat prints information about the Linux networking subsystem.
652 652
653config FEATURE_NETSTAT_WIDE 653config FEATURE_NETSTAT_WIDE
654 bool "Enable wide netstat output" 654 bool "Enable wide netstat output"
655 default n 655 default y
656 depends on NETSTAT 656 depends on NETSTAT
657 help 657 help
658 Add support for wide columns. Useful when displaying IPv6 addresses 658 Add support for wide columns. Useful when displaying IPv6 addresses
@@ -660,7 +660,7 @@ config FEATURE_NETSTAT_WIDE
660 660
661config FEATURE_NETSTAT_PRG 661config FEATURE_NETSTAT_PRG
662 bool "Enable PID/Program name output" 662 bool "Enable PID/Program name output"
663 default n 663 default y
664 depends on NETSTAT 664 depends on NETSTAT
665 help 665 help
666 Add support for -p flag to print out PID and program name. 666 Add support for -p flag to print out PID and program name.
@@ -668,13 +668,13 @@ config FEATURE_NETSTAT_PRG
668 668
669config NSLOOKUP 669config NSLOOKUP
670 bool "nslookup" 670 bool "nslookup"
671 default n 671 default y
672 help 672 help
673 nslookup is a tool to query Internet name servers. 673 nslookup is a tool to query Internet name servers.
674 674
675config NTPD 675config NTPD
676 bool "ntpd" 676 bool "ntpd"
677 default n 677 default y
678 help 678 help
679 The NTP client/server daemon. 679 The NTP client/server daemon.
680 680
@@ -688,14 +688,14 @@ config FEATURE_NTPD_SERVER
688 688
689config PING 689config PING
690 bool "ping" 690 bool "ping"
691 default n 691 default y
692 help 692 help
693 ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to 693 ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
694 elicit an ICMP ECHO_RESPONSE from a host or gateway. 694 elicit an ICMP ECHO_RESPONSE from a host or gateway.
695 695
696config PING6 696config PING6
697 bool "ping6" 697 bool "ping6"
698 default n 698 default y
699 depends on FEATURE_IPV6 && PING 699 depends on FEATURE_IPV6 && PING
700 help 700 help
701 This will give you a ping that can talk IPv6. 701 This will give you a ping that can talk IPv6.
@@ -710,26 +710,26 @@ config FEATURE_FANCY_PING
710 710
711config PSCAN 711config PSCAN
712 bool "pscan" 712 bool "pscan"
713 default n 713 default y
714 help 714 help
715 Simple network port scanner. 715 Simple network port scanner.
716 716
717config ROUTE 717config ROUTE
718 bool "route" 718 bool "route"
719 default n 719 default y
720 help 720 help
721 Route displays or manipulates the kernel's IP routing tables. 721 Route displays or manipulates the kernel's IP routing tables.
722 722
723config SLATTACH 723config SLATTACH
724 bool "slattach" 724 bool "slattach"
725 default n 725 default y
726 help 726 help
727 slattach is a small utility to attach network interfaces to serial 727 slattach is a small utility to attach network interfaces to serial
728 lines. 728 lines.
729 729
730#config TC 730#config TC
731# bool "tc" 731# bool "tc"
732# default n 732# default y
733# help 733# help
734# show / manipulate traffic control settings 734# show / manipulate traffic control settings
735# 735#
@@ -739,14 +739,14 @@ config SLATTACH
739 739
740config TCPSVD 740config TCPSVD
741 bool "tcpsvd" 741 bool "tcpsvd"
742 default n 742 default y
743 help 743 help
744 tcpsvd listens on a TCP port and runs a program for each new 744 tcpsvd listens on a TCP port and runs a program for each new
745 connection. 745 connection.
746 746
747config TELNET 747config TELNET
748 bool "telnet" 748 bool "telnet"
749 default n 749 default y
750 help 750 help
751 Telnet is an interface to the TELNET protocol, but is also commonly 751 Telnet is an interface to the TELNET protocol, but is also commonly
752 used to test other simple protocols. 752 used to test other simple protocols.
@@ -772,7 +772,7 @@ config FEATURE_TELNET_AUTOLOGIN
772 772
773config TELNETD 773config TELNETD
774 bool "telnetd" 774 bool "telnetd"
775 default n 775 default y
776 select FEATURE_SYSLOG 776 select FEATURE_SYSLOG
777 help 777 help
778 A daemon for the TELNET protocol, allowing you to log onto the host 778 A daemon for the TELNET protocol, allowing you to log onto the host
@@ -815,14 +815,14 @@ config TELNETD
815 815
816config FEATURE_TELNETD_STANDALONE 816config FEATURE_TELNETD_STANDALONE
817 bool "Support standalone telnetd (not inetd only)" 817 bool "Support standalone telnetd (not inetd only)"
818 default n 818 default y
819 depends on TELNETD 819 depends on TELNETD
820 help 820 help
821 Selecting this will make telnetd able to run standalone. 821 Selecting this will make telnetd able to run standalone.
822 822
823config FEATURE_TELNETD_INETD_WAIT 823config FEATURE_TELNETD_INETD_WAIT
824 bool "Support -w SEC option (inetd wait mode)" 824 bool "Support -w SEC option (inetd wait mode)"
825 default n 825 default y
826 depends on FEATURE_TELNETD_STANDALONE 826 depends on FEATURE_TELNETD_STANDALONE
827 help 827 help
828 This option allows you to run telnetd in "inet wait" mode. 828 This option allows you to run telnetd in "inet wait" mode.
@@ -843,7 +843,7 @@ config FEATURE_TELNETD_INETD_WAIT
843 843
844config TFTP 844config TFTP
845 bool "tftp" 845 bool "tftp"
846 default n 846 default y
847 help 847 help
848 This enables the Trivial File Transfer Protocol client program. TFTP 848 This enables the Trivial File Transfer Protocol client program. TFTP
849 is usually used for simple, small transfers such as a root image 849 is usually used for simple, small transfers such as a root image
@@ -851,7 +851,7 @@ config TFTP
851 851
852config TFTPD 852config TFTPD
853 bool "tftpd" 853 bool "tftpd"
854 default n 854 default y
855 help 855 help
856 This enables the Trivial File Transfer Protocol server program. 856 This enables the Trivial File Transfer Protocol server program.
857 It expects that stdin is a datagram socket and a packet 857 It expects that stdin is a datagram socket and a packet
@@ -882,7 +882,7 @@ config FEATURE_TFTP_PUT
882 882
883config FEATURE_TFTP_BLOCKSIZE 883config FEATURE_TFTP_BLOCKSIZE
884 bool "Enable 'blksize' and 'tsize' protocol options" 884 bool "Enable 'blksize' and 'tsize' protocol options"
885 default n 885 default y
886 depends on TFTP || TFTPD 886 depends on TFTP || TFTPD
887 help 887 help
888 Allow tftp to specify block size, and tftpd to understand 888 Allow tftp to specify block size, and tftpd to understand
@@ -890,7 +890,7 @@ config FEATURE_TFTP_BLOCKSIZE
890 890
891config FEATURE_TFTP_PROGRESS_BAR 891config FEATURE_TFTP_PROGRESS_BAR
892 bool "Enable tftp progress meter" 892 bool "Enable tftp progress meter"
893 default n 893 default y
894 depends on TFTP && FEATURE_TFTP_BLOCKSIZE 894 depends on TFTP && FEATURE_TFTP_BLOCKSIZE
895 help 895 help
896 Show progress bar. 896 Show progress bar.
@@ -905,20 +905,20 @@ config TFTP_DEBUG
905 905
906config TRACEROUTE 906config TRACEROUTE
907 bool "traceroute" 907 bool "traceroute"
908 default n 908 default y
909 help 909 help
910 Utility to trace the route of IP packets. 910 Utility to trace the route of IP packets.
911 911
912config TRACEROUTE6 912config TRACEROUTE6
913 bool "traceroute6" 913 bool "traceroute6"
914 default n 914 default y
915 depends on FEATURE_IPV6 && TRACEROUTE 915 depends on FEATURE_IPV6 && TRACEROUTE
916 help 916 help
917 Utility to trace the route of IPv6 packets. 917 Utility to trace the route of IPv6 packets.
918 918
919config FEATURE_TRACEROUTE_VERBOSE 919config FEATURE_TRACEROUTE_VERBOSE
920 bool "Enable verbose output" 920 bool "Enable verbose output"
921 default n 921 default y
922 depends on TRACEROUTE 922 depends on TRACEROUTE
923 help 923 help
924 Add some verbosity to traceroute. This includes among other things 924 Add some verbosity to traceroute. This includes among other things
@@ -941,13 +941,13 @@ config FEATURE_TRACEROUTE_USE_ICMP
941 941
942config TUNCTL 942config TUNCTL
943 bool "tunctl" 943 bool "tunctl"
944 default n 944 default y
945 help 945 help
946 tunctl creates or deletes tun devices. 946 tunctl creates or deletes tun devices.
947 947
948config FEATURE_TUNCTL_UG 948config FEATURE_TUNCTL_UG
949 bool "Support owner:group assignment" 949 bool "Support owner:group assignment"
950 default n 950 default y
951 depends on TUNCTL 951 depends on TUNCTL
952 help 952 help
953 Allow to specify owner and group of newly created interface. 953 Allow to specify owner and group of newly created interface.
@@ -966,20 +966,20 @@ config IFUPDOWN_UDHCPC_CMD_OPTIONS
966 966
967config UDPSVD 967config UDPSVD
968 bool "udpsvd" 968 bool "udpsvd"
969 default n 969 default y
970 help 970 help
971 udpsvd listens on an UDP port and runs a program for each new 971 udpsvd listens on an UDP port and runs a program for each new
972 connection. 972 connection.
973 973
974config VCONFIG 974config VCONFIG
975 bool "vconfig" 975 bool "vconfig"
976 default n 976 default y
977 help 977 help
978 Creates, removes, and configures VLAN interfaces 978 Creates, removes, and configures VLAN interfaces
979 979
980config WGET 980config WGET
981 bool "wget" 981 bool "wget"
982 default n 982 default y
983 help 983 help
984 wget is a utility for non-interactive download of files from HTTP, 984 wget is a utility for non-interactive download of files from HTTP,
985 HTTPS, and FTP servers. 985 HTTPS, and FTP servers.
@@ -1000,14 +1000,14 @@ config FEATURE_WGET_AUTHENTICATION
1000 1000
1001config FEATURE_WGET_LONG_OPTIONS 1001config FEATURE_WGET_LONG_OPTIONS
1002 bool "Enable long options" 1002 bool "Enable long options"
1003 default n 1003 default y
1004 depends on WGET && LONG_OPTS 1004 depends on WGET && LONG_OPTS
1005 help 1005 help
1006 Support long options for the wget applet. 1006 Support long options for the wget applet.
1007 1007
1008config ZCIP 1008config ZCIP
1009 bool "zcip" 1009 bool "zcip"
1010 default n 1010 default y
1011 select FEATURE_SYSLOG 1011 select FEATURE_SYSLOG
1012 help 1012 help
1013 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927. 1013 ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927.
diff --git a/networking/udhcp/Config.src b/networking/udhcp/Config.src
index 34adf35fe..f5840a945 100644
--- a/networking/udhcp/Config.src
+++ b/networking/udhcp/Config.src
@@ -5,14 +5,14 @@
5 5
6config UDHCPD 6config UDHCPD
7 bool "udhcp server (udhcpd)" 7 bool "udhcp server (udhcpd)"
8 default n 8 default y
9 help 9 help
10 udhcpd is a DHCP server geared primarily toward embedded systems, 10 udhcpd is a DHCP server geared primarily toward embedded systems,
11 while striving to be fully functional and RFC compliant. 11 while striving to be fully functional and RFC compliant.
12 12
13config DHCPRELAY 13config DHCPRELAY
14 bool "dhcprelay" 14 bool "dhcprelay"
15 default n 15 default y
16 depends on UDHCPD 16 depends on UDHCPD
17 help 17 help
18 dhcprelay listens for dhcp requests on one or more interfaces 18 dhcprelay listens for dhcp requests on one or more interfaces
@@ -21,7 +21,7 @@ config DHCPRELAY
21 21
22config DUMPLEASES 22config DUMPLEASES
23 bool "Lease display utility (dumpleases)" 23 bool "Lease display utility (dumpleases)"
24 default n 24 default y
25 depends on UDHCPD 25 depends on UDHCPD
26 help 26 help
27 dumpleases displays the leases written out by the udhcpd server. 27 dumpleases displays the leases written out by the udhcpd server.
@@ -30,7 +30,7 @@ config DUMPLEASES
30 30
31config FEATURE_UDHCPD_WRITE_LEASES_EARLY 31config FEATURE_UDHCPD_WRITE_LEASES_EARLY
32 bool "Rewrite the lease file at every new acknowledge" 32 bool "Rewrite the lease file at every new acknowledge"
33 default n 33 default y
34 depends on UDHCPD 34 depends on UDHCPD
35 help 35 help
36 If selected, udhcpd will write a new file with leases every 36 If selected, udhcpd will write a new file with leases every
@@ -48,7 +48,7 @@ config DHCPD_LEASES_FILE
48 48
49config UDHCPC 49config UDHCPC
50 bool "udhcp client (udhcpc)" 50 bool "udhcp client (udhcpc)"
51 default n 51 default y
52 help 52 help
53 udhcpc is a DHCP client geared primarily toward embedded systems, 53 udhcpc is a DHCP client geared primarily toward embedded systems,
54 while striving to be fully functional and RFC compliant. 54 while striving to be fully functional and RFC compliant.
@@ -68,7 +68,7 @@ config FEATURE_UDHCPC_ARPING
68 68
69config FEATURE_UDHCP_PORT 69config FEATURE_UDHCP_PORT
70 bool "Enable '-P port' option for udhcpd and udhcpc" 70 bool "Enable '-P port' option for udhcpd and udhcpc"
71 default n 71 default y
72 depends on UDHCPD || UDHCPC 72 depends on UDHCPD || UDHCPC
73 help 73 help
74 At the cost of ~300 bytes, enables -P port option. 74 At the cost of ~300 bytes, enables -P port option.
@@ -76,7 +76,7 @@ config FEATURE_UDHCP_PORT
76 76
77config UDHCP_DEBUG 77config UDHCP_DEBUG
78 int "Maximum verbosity level for udhcp applets (0..9)" 78 int "Maximum verbosity level for udhcp applets (0..9)"
79 default 0 79 default 9
80 range 0 9 80 range 0 9
81 depends on UDHCPD || UDHCPC || DHCPRELAY 81 depends on UDHCPD || UDHCPC || DHCPRELAY
82 help 82 help
@@ -88,7 +88,7 @@ config UDHCP_DEBUG
88 88
89config FEATURE_UDHCP_RFC3397 89config FEATURE_UDHCP_RFC3397
90 bool "Support for RFC3397 domain search (experimental)" 90 bool "Support for RFC3397 domain search (experimental)"
91 default n 91 default y
92 depends on UDHCPD || UDHCPC 92 depends on UDHCPD || UDHCPC
93 help 93 help
94 If selected, both client and server will support passing of domain 94 If selected, both client and server will support passing of domain