diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-18 11:11:40 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-18 11:11:40 +0000 |
commit | ea46f456d494dec23f8ec85ba79db9747736993f (patch) | |
tree | f3f8a908957f52112af967da0c1ca455e4f13acd /networking | |
parent | ba31d272494094f2ecf62f853253ef2fca85e913 (diff) | |
download | busybox-w32-ea46f456d494dec23f8ec85ba79db9747736993f.tar.gz busybox-w32-ea46f456d494dec23f8ec85ba79db9747736993f.tar.bz2 busybox-w32-ea46f456d494dec23f8ec85ba79db9747736993f.zip |
- patch from P.J. Day to rely on the automatic indenting provided by depends.
Diffstat (limited to 'networking')
-rw-r--r-- | networking/Config.in | 122 |
1 files changed, 60 insertions, 62 deletions
diff --git a/networking/Config.in b/networking/Config.in index e44005394..cbbf52f2a 100644 --- a/networking/Config.in +++ b/networking/Config.in | |||
@@ -62,51 +62,49 @@ config CONFIG_HTTPD | |||
62 | Serve web pages via an HTTP server. | 62 | Serve web pages via an HTTP server. |
63 | 63 | ||
64 | config CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY | 64 | config CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY |
65 | bool " Support using httpd only from inetd" | 65 | bool "Support using httpd only from inetd" |
66 | default n | 66 | default n |
67 | depends on CONFIG_HTTPD | 67 | depends on CONFIG_HTTPD |
68 | help | 68 | help |
69 | This option disables uid and port options for the httpd applet | 69 | This option disables uid and port options for the httpd applet |
70 | but requires inetd server daemon. | 70 | but requires inetd server daemon. |
71 | 71 | ||
72 | config CONFIG_FEATURE_HTTPD_BASIC_AUTH | ||
73 | bool " Enable Basic http Authentication" | ||
74 | default y | ||
75 | depends on CONFIG_HTTPD | ||
76 | help | ||
77 | Utilizes password settings from /etc/httpd.conf for basic | ||
78 | authentication on a per url basis. | ||
79 | |||
80 | config CONFIG_FEATURE_HTTPD_AUTH_MD5 | ||
81 | bool " Support MD5 crypted passwords for http Authentication" | ||
82 | default n | ||
83 | depends on CONFIG_FEATURE_HTTPD_BASIC_AUTH | ||
84 | help | ||
85 | Enables basic per url authentication from /etc/httpd.conf | ||
86 | using md5 passwords. | ||
87 | |||
88 | if !CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY | ||
89 | config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP | 72 | config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP |
90 | bool " Support reloading the global config file using hup signal" | 73 | bool "Support reloading the global config file using hup signal" |
91 | default n | 74 | default n |
92 | depends on CONFIG_HTTPD | 75 | depends on CONFIG_HTTPD && !CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY |
93 | help | 76 | help |
94 | This option enables processing of SIGHUP to reload cached | 77 | This option enables processing of SIGHUP to reload cached |
95 | configuration settings. | 78 | configuration settings. |
96 | 79 | ||
97 | config CONFIG_FEATURE_HTTPD_SETUID | 80 | config CONFIG_FEATURE_HTTPD_SETUID |
98 | bool " Enable support -u <user> option" | 81 | bool "Enable support -u <user> option" |
99 | default n | 82 | default n |
100 | depends on CONFIG_HTTPD | 83 | depends on CONFIG_HTTPD && !CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY |
101 | help | 84 | help |
102 | This option allows the server to run as a specific user | 85 | This option allows the server to run as a specific user |
103 | rather than defaulting to the user that starts the server. | 86 | rather than defaulting to the user that starts the server. |
104 | Use of this option requires special privileges to change to a | 87 | Use of this option requires special privileges to change to a |
105 | different user. | 88 | different user. |
106 | endif | 89 | |
90 | config CONFIG_FEATURE_HTTPD_BASIC_AUTH | ||
91 | bool "Enable Basic http Authentication" | ||
92 | default y | ||
93 | depends on CONFIG_HTTPD | ||
94 | help | ||
95 | Utilizes password settings from /etc/httpd.conf for basic | ||
96 | authentication on a per url basis. | ||
97 | |||
98 | config CONFIG_FEATURE_HTTPD_AUTH_MD5 | ||
99 | bool "Support MD5 crypted passwords for http Authentication" | ||
100 | default n | ||
101 | depends on CONFIG_FEATURE_HTTPD_BASIC_AUTH | ||
102 | help | ||
103 | Enables basic per url authentication from /etc/httpd.conf | ||
104 | using md5 passwords. | ||
107 | 105 | ||
108 | config CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES | 106 | config CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES |
109 | bool " Support loading additional MIME types at run-time" | 107 | bool "Support loading additional MIME types at run-time" |
110 | default n | 108 | default n |
111 | depends on CONFIG_HTTPD | 109 | depends on CONFIG_HTTPD |
112 | help | 110 | help |
@@ -114,7 +112,7 @@ config CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES | |||
114 | run-time to be specified in the configuration file. | 112 | run-time to be specified in the configuration file. |
115 | 113 | ||
116 | config CONFIG_FEATURE_HTTPD_CGI | 114 | config CONFIG_FEATURE_HTTPD_CGI |
117 | bool " Support Common Gateway Interface (CGI)" | 115 | bool "Support Common Gateway Interface (CGI)" |
118 | default y | 116 | default y |
119 | depends on CONFIG_HTTPD | 117 | depends on CONFIG_HTTPD |
120 | help | 118 | help |
@@ -122,7 +120,7 @@ config CONFIG_FEATURE_HTTPD_CGI | |||
122 | when specific urls are requested. | 120 | when specific urls are requested. |
123 | 121 | ||
124 | config CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR | 122 | config CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR |
125 | bool " Enable support for running scripts through an interpreter" | 123 | bool "Enable support for running scripts through an interpreter" |
126 | default n | 124 | default n |
127 | depends on CONFIG_FEATURE_HTTPD_CGI | 125 | depends on CONFIG_FEATURE_HTTPD_CGI |
128 | help | 126 | help |
@@ -133,7 +131,7 @@ config CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR | |||
133 | *.php:/path/to/your/php | 131 | *.php:/path/to/your/php |
134 | 132 | ||
135 | config CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV | 133 | config CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV |
136 | bool " Support the REMOTE_PORT environment variable for CGI" | 134 | bool "Support the REMOTE_PORT environment variable for CGI" |
137 | default n | 135 | default n |
138 | depends on CONFIG_FEATURE_HTTPD_CGI | 136 | depends on CONFIG_FEATURE_HTTPD_CGI |
139 | help | 137 | help |
@@ -141,7 +139,7 @@ config CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV | |||
141 | references that contain a unique port number. | 139 | references that contain a unique port number. |
142 | 140 | ||
143 | config CONFIG_FEATURE_HTTPD_ENCODE_URL_STR | 141 | config CONFIG_FEATURE_HTTPD_ENCODE_URL_STR |
144 | bool " Enable the -e option for shell script CGI simplification." | 142 | bool "Enable the -e option for shell script CGI simplification." |
145 | default y | 143 | default y |
146 | depends on CONFIG_HTTPD | 144 | depends on CONFIG_HTTPD |
147 | help | 145 | help |
@@ -157,7 +155,7 @@ config CONFIG_IFCONFIG | |||
157 | Ifconfig is used to configure the kernel-resident network interfaces. | 155 | Ifconfig is used to configure the kernel-resident network interfaces. |
158 | 156 | ||
159 | config CONFIG_FEATURE_IFCONFIG_STATUS | 157 | config CONFIG_FEATURE_IFCONFIG_STATUS |
160 | bool " Enable status reporting output (+7k)" | 158 | bool "Enable status reporting output (+7k)" |
161 | default y | 159 | default y |
162 | depends on CONFIG_IFCONFIG | 160 | depends on CONFIG_IFCONFIG |
163 | help | 161 | help |
@@ -165,7 +163,7 @@ config CONFIG_FEATURE_IFCONFIG_STATUS | |||
165 | of the currently active interfaces. | 163 | of the currently active interfaces. |
166 | 164 | ||
167 | config CONFIG_FEATURE_IFCONFIG_SLIP | 165 | config CONFIG_FEATURE_IFCONFIG_SLIP |
168 | bool " Enable slip-specific options \"keepalive\" and \"outfill\"" | 166 | bool "Enable slip-specific options \"keepalive\" and \"outfill\"" |
169 | default n | 167 | default n |
170 | depends on CONFIG_IFCONFIG | 168 | depends on CONFIG_IFCONFIG |
171 | help | 169 | help |
@@ -173,7 +171,7 @@ config CONFIG_FEATURE_IFCONFIG_SLIP | |||
173 | planning on using serial lines, leave this unchecked. | 171 | planning on using serial lines, leave this unchecked. |
174 | 172 | ||
175 | config CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ | 173 | config CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ |
176 | bool " Enable options \"mem_start\", \"io_addr\", and \"irq\"" | 174 | bool "Enable options \"mem_start\", \"io_addr\", and \"irq\"" |
177 | default n | 175 | default n |
178 | depends on CONFIG_IFCONFIG | 176 | depends on CONFIG_IFCONFIG |
179 | help | 177 | help |
@@ -181,7 +179,7 @@ config CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ | |||
181 | and/or the interrupt line used by the specified device. | 179 | and/or the interrupt line used by the specified device. |
182 | 180 | ||
183 | config CONFIG_FEATURE_IFCONFIG_HW | 181 | config CONFIG_FEATURE_IFCONFIG_HW |
184 | bool " Enable option \"hw\" (ether only)" | 182 | bool "Enable option \"hw\" (ether only)" |
185 | default y | 183 | default y |
186 | depends on CONFIG_IFCONFIG | 184 | depends on CONFIG_IFCONFIG |
187 | help | 185 | help |
@@ -190,7 +188,7 @@ config CONFIG_FEATURE_IFCONFIG_HW | |||
190 | class. | 188 | class. |
191 | 189 | ||
192 | config CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS | 190 | config CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS |
193 | bool " Set the broadcast automatically" | 191 | bool "Set the broadcast automatically" |
194 | default n | 192 | default n |
195 | depends on CONFIG_IFCONFIG | 193 | depends on CONFIG_IFCONFIG |
196 | help | 194 | help |
@@ -215,7 +213,7 @@ config CONFIG_IFUPDOWN | |||
215 | standalone utilities. | 213 | standalone utilities. |
216 | 214 | ||
217 | config CONFIG_FEATURE_IFUPDOWN_IP | 215 | config CONFIG_FEATURE_IFUPDOWN_IP |
218 | bool " Use ip applet" | 216 | bool "Use ip applet" |
219 | default n | 217 | default n |
220 | depends on CONFIG_IFUPDOWN | 218 | depends on CONFIG_IFUPDOWN |
221 | help | 219 | help |
@@ -223,7 +221,7 @@ config CONFIG_FEATURE_IFUPDOWN_IP | |||
223 | than the default of using the older 'ifconfig' and 'route' utilities. | 221 | than the default of using the older 'ifconfig' and 'route' utilities. |
224 | 222 | ||
225 | config CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN | 223 | config CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN |
226 | bool " Use busybox ip applet" | 224 | bool "Use busybox ip applet" |
227 | default y | 225 | default y |
228 | depends on CONFIG_FEATURE_IFUPDOWN_IP | 226 | depends on CONFIG_FEATURE_IFUPDOWN_IP |
229 | select CONFIG_IP | 227 | select CONFIG_IP |
@@ -237,7 +235,7 @@ config CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN | |||
237 | utility or the "ifup" and "ifdown" applets will not work. | 235 | utility or the "ifup" and "ifdown" applets will not work. |
238 | 236 | ||
239 | config CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN | 237 | config CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN |
240 | bool " Use busybox ifconfig and route applets" | 238 | bool "Use busybox ifconfig and route applets" |
241 | default y | 239 | default y |
242 | depends on CONFIG_IFUPDOWN && !CONFIG_FEATURE_IFUPDOWN_IP | 240 | depends on CONFIG_IFUPDOWN && !CONFIG_FEATURE_IFUPDOWN_IP |
243 | select CONFIG_IFCONFIG | 241 | select CONFIG_IFCONFIG |
@@ -251,21 +249,21 @@ config CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN | |||
251 | work. | 249 | work. |
252 | 250 | ||
253 | config CONFIG_FEATURE_IFUPDOWN_IPV4 | 251 | config CONFIG_FEATURE_IFUPDOWN_IPV4 |
254 | bool " Enable support for IPv4" | 252 | bool "Enable support for IPv4" |
255 | default y | 253 | default y |
256 | depends on CONFIG_IFUPDOWN | 254 | depends on CONFIG_IFUPDOWN |
257 | help | 255 | help |
258 | If you want busybox to talk IPv4, leave this on. | 256 | If you want busybox to talk IPv4, leave this on. |
259 | 257 | ||
260 | config CONFIG_FEATURE_IFUPDOWN_IPV6 | 258 | config CONFIG_FEATURE_IFUPDOWN_IPV6 |
261 | bool " Enable support for IPv6" | 259 | bool "Enable support for IPv6" |
262 | default n | 260 | default n |
263 | depends on CONFIG_IFUPDOWN && CONFIG_FEATURE_IPV6 | 261 | depends on CONFIG_IFUPDOWN && CONFIG_FEATURE_IPV6 |
264 | help | 262 | help |
265 | If you need support for IPv6, turn this option on. | 263 | If you need support for IPv6, turn this option on. |
266 | 264 | ||
267 | config CONFIG_FEATURE_IFUPDOWN_IPX | 265 | config CONFIG_FEATURE_IFUPDOWN_IPX |
268 | bool " Enable support for IPX" | 266 | bool "Enable support for IPX" |
269 | default n | 267 | default n |
270 | depends on CONFIG_IFUPDOWN | 268 | depends on CONFIG_IFUPDOWN |
271 | help | 269 | help |
@@ -273,7 +271,7 @@ config CONFIG_FEATURE_IFUPDOWN_IPX | |||
273 | networks. | 271 | networks. |
274 | 272 | ||
275 | config CONFIG_FEATURE_IFUPDOWN_MAPPING | 273 | config CONFIG_FEATURE_IFUPDOWN_MAPPING |
276 | bool " Enable mapping support" | 274 | bool "Enable mapping support" |
277 | default n | 275 | default n |
278 | depends on CONFIG_IFUPDOWN | 276 | depends on CONFIG_IFUPDOWN |
279 | help | 277 | help |
@@ -287,42 +285,42 @@ config CONFIG_INETD | |||
287 | Internet superserver daemon | 285 | Internet superserver daemon |
288 | 286 | ||
289 | config CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO | 287 | config CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO |
290 | bool " Support echo service" | 288 | bool "Support echo service" |
291 | default y | 289 | default y |
292 | depends on CONFIG_INETD | 290 | depends on CONFIG_INETD |
293 | help | 291 | help |
294 | Echo received data internal inetd service | 292 | Echo received data internal inetd service |
295 | 293 | ||
296 | config CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD | 294 | config CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD |
297 | bool " Support discard service" | 295 | bool "Support discard service" |
298 | default y | 296 | default y |
299 | depends on CONFIG_INETD | 297 | depends on CONFIG_INETD |
300 | help | 298 | help |
301 | Internet /dev/null internal inetd service | 299 | Internet /dev/null internal inetd service |
302 | 300 | ||
303 | config CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME | 301 | config CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME |
304 | bool " Support time service" | 302 | bool "Support time service" |
305 | default y | 303 | default y |
306 | depends on CONFIG_INETD | 304 | depends on CONFIG_INETD |
307 | help | 305 | help |
308 | Return 32 bit time since 1900 internal inetd service | 306 | Return 32 bit time since 1900 internal inetd service |
309 | 307 | ||
310 | config CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME | 308 | config CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME |
311 | bool " Support daytime service" | 309 | bool "Support daytime service" |
312 | default y | 310 | default y |
313 | depends on CONFIG_INETD | 311 | depends on CONFIG_INETD |
314 | help | 312 | help |
315 | Return human-readable time internal inetd service | 313 | Return human-readable time internal inetd service |
316 | 314 | ||
317 | config CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN | 315 | config CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN |
318 | bool " Support chargen service" | 316 | bool "Support chargen service" |
319 | default y | 317 | default y |
320 | depends on CONFIG_INETD | 318 | depends on CONFIG_INETD |
321 | help | 319 | help |
322 | Familiar character generator internal inetd service | 320 | Familiar character generator internal inetd service |
323 | 321 | ||
324 | config CONFIG_FEATURE_INETD_RPC | 322 | config CONFIG_FEATURE_INETD_RPC |
325 | bool " Support RPC services" | 323 | bool "Support RPC services" |
326 | default n | 324 | default n |
327 | depends on CONFIG_INETD | 325 | depends on CONFIG_INETD |
328 | help | 326 | help |
@@ -407,7 +405,7 @@ config CONFIG_IPCALC | |||
407 | resulting broadcast, network, and host range. | 405 | resulting broadcast, network, and host range. |
408 | 406 | ||
409 | config CONFIG_FEATURE_IPCALC_FANCY | 407 | config CONFIG_FEATURE_IPCALC_FANCY |
410 | bool " Fancy IPCALC, more options, adds 1 kbyte" | 408 | bool "Fancy IPCALC, more options, adds 1 kbyte" |
411 | default y | 409 | default y |
412 | depends on CONFIG_IPCALC | 410 | depends on CONFIG_IPCALC |
413 | help | 411 | help |
@@ -462,7 +460,7 @@ config CONFIG_PING | |||
462 | elicit an ICMP ECHO_RESPONSE from a host or gateway. | 460 | elicit an ICMP ECHO_RESPONSE from a host or gateway. |
463 | 461 | ||
464 | config CONFIG_FEATURE_FANCY_PING | 462 | config CONFIG_FEATURE_FANCY_PING |
465 | bool " Enable fancy ping output" | 463 | bool "Enable fancy ping output" |
466 | default y | 464 | default y |
467 | depends on CONFIG_PING | 465 | depends on CONFIG_PING |
468 | help | 466 | help |
@@ -477,7 +475,7 @@ config CONFIG_PING6 | |||
477 | This will give you a ping that can talk IPv6. | 475 | This will give you a ping that can talk IPv6. |
478 | 476 | ||
479 | config CONFIG_FEATURE_FANCY_PING6 | 477 | config CONFIG_FEATURE_FANCY_PING6 |
480 | bool " Enable fancy ping6 output" | 478 | bool "Enable fancy ping6 output" |
481 | default y | 479 | default y |
482 | depends on CONFIG_PING6 | 480 | depends on CONFIG_PING6 |
483 | help | 481 | help |
@@ -498,7 +496,7 @@ config CONFIG_TELNET | |||
498 | used to test other simple protocols. | 496 | used to test other simple protocols. |
499 | 497 | ||
500 | config CONFIG_FEATURE_TELNET_TTYPE | 498 | config CONFIG_FEATURE_TELNET_TTYPE |
501 | bool " Pass TERM type to remote host" | 499 | bool "Pass TERM type to remote host" |
502 | default y | 500 | default y |
503 | depends on CONFIG_TELNET | 501 | depends on CONFIG_TELNET |
504 | help | 502 | help |
@@ -507,7 +505,7 @@ config CONFIG_FEATURE_TELNET_TTYPE | |||
507 | things like ANSI colors and other control sequences behave. | 505 | things like ANSI colors and other control sequences behave. |
508 | 506 | ||
509 | config CONFIG_FEATURE_TELNET_AUTOLOGIN | 507 | config CONFIG_FEATURE_TELNET_AUTOLOGIN |
510 | bool " Pass USER type to remote host" | 508 | bool "Pass USER type to remote host" |
511 | default y | 509 | default y |
512 | depends on CONFIG_TELNET | 510 | depends on CONFIG_TELNET |
513 | help | 511 | help |
@@ -559,7 +557,7 @@ config CONFIG_TELNETD | |||
559 | 557 | ||
560 | 558 | ||
561 | config CONFIG_FEATURE_TELNETD_INETD | 559 | config CONFIG_FEATURE_TELNETD_INETD |
562 | bool " Support call from inetd only" | 560 | bool "Support call from inetd only" |
563 | default n | 561 | default n |
564 | depends on CONFIG_TELNETD | 562 | depends on CONFIG_TELNETD |
565 | help | 563 | help |
@@ -575,7 +573,7 @@ config CONFIG_TFTP | |||
575 | for a network-enabled bootloader. | 573 | for a network-enabled bootloader. |
576 | 574 | ||
577 | config CONFIG_FEATURE_TFTP_GET | 575 | config CONFIG_FEATURE_TFTP_GET |
578 | bool " Enable \"get\" command" | 576 | bool "Enable \"get\" command" |
579 | default y | 577 | default y |
580 | depends on CONFIG_TFTP | 578 | depends on CONFIG_TFTP |
581 | help | 579 | help |
@@ -583,7 +581,7 @@ config CONFIG_FEATURE_TFTP_GET | |||
583 | a client to retrieve a file from a TFTP server. | 581 | a client to retrieve a file from a TFTP server. |
584 | 582 | ||
585 | config CONFIG_FEATURE_TFTP_PUT | 583 | config CONFIG_FEATURE_TFTP_PUT |
586 | bool " Enable \"put\" command" | 584 | bool "Enable \"put\" command" |
587 | default y | 585 | default y |
588 | depends on CONFIG_TFTP | 586 | depends on CONFIG_TFTP |
589 | help | 587 | help |
@@ -591,14 +589,14 @@ config CONFIG_FEATURE_TFTP_PUT | |||
591 | a client to transfer a file to a TFTP server. | 589 | a client to transfer a file to a TFTP server. |
592 | 590 | ||
593 | config CONFIG_FEATURE_TFTP_BLOCKSIZE | 591 | config CONFIG_FEATURE_TFTP_BLOCKSIZE |
594 | bool " Enable \"blocksize\" command" | 592 | bool "Enable \"blocksize\" command" |
595 | default n | 593 | default n |
596 | depends on CONFIG_TFTP | 594 | depends on CONFIG_TFTP |
597 | help | 595 | help |
598 | Allow the client to specify the desired block size for transfers. | 596 | Allow the client to specify the desired block size for transfers. |
599 | 597 | ||
600 | config CONFIG_FEATURE_TFTP_DEBUG | 598 | config CONFIG_FEATURE_TFTP_DEBUG |
601 | bool " Enable debug" | 599 | bool "Enable debug" |
602 | default n | 600 | default n |
603 | depends on CONFIG_TFTP | 601 | depends on CONFIG_TFTP |
604 | help | 602 | help |
@@ -613,7 +611,7 @@ config CONFIG_TRACEROUTE | |||
613 | Utility to trace the route of IP packets | 611 | Utility to trace the route of IP packets |
614 | 612 | ||
615 | config CONFIG_FEATURE_TRACEROUTE_VERBOSE | 613 | config CONFIG_FEATURE_TRACEROUTE_VERBOSE |
616 | bool " Enable verbose output" | 614 | bool "Enable verbose output" |
617 | default n | 615 | default n |
618 | depends on CONFIG_TRACEROUTE | 616 | depends on CONFIG_TRACEROUTE |
619 | help | 617 | help |
@@ -621,7 +619,7 @@ config CONFIG_FEATURE_TRACEROUTE_VERBOSE | |||
621 | hostnames and ICMP response types. | 619 | hostnames and ICMP response types. |
622 | 620 | ||
623 | config CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE | 621 | config CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE |
624 | bool " Enable loose source route" | 622 | bool "Enable loose source route" |
625 | default n | 623 | default n |
626 | depends on CONFIG_TRACEROUTE | 624 | depends on CONFIG_TRACEROUTE |
627 | help | 625 | help |
@@ -629,7 +627,7 @@ config CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE | |||
629 | (8 maximum). | 627 | (8 maximum). |
630 | 628 | ||
631 | config CONFIG_FEATURE_TRACEROUTE_USE_ICMP | 629 | config CONFIG_FEATURE_TRACEROUTE_USE_ICMP |
632 | bool " Use ICMP instead of UDP" | 630 | bool "Use ICMP instead of UDP" |
633 | default n | 631 | default n |
634 | depends on CONFIG_TRACEROUTE | 632 | depends on CONFIG_TRACEROUTE |
635 | help | 633 | help |
@@ -651,21 +649,21 @@ config CONFIG_WGET | |||
651 | HTTPS, and FTP servers. | 649 | HTTPS, and FTP servers. |
652 | 650 | ||
653 | config CONFIG_FEATURE_WGET_STATUSBAR | 651 | config CONFIG_FEATURE_WGET_STATUSBAR |
654 | bool " Enable a nifty process meter (+2k)" | 652 | bool "Enable a nifty process meter (+2k)" |
655 | default y | 653 | default y |
656 | depends on CONFIG_WGET | 654 | depends on CONFIG_WGET |
657 | help | 655 | help |
658 | Enable the transfer progress bar for wget transfers. | 656 | Enable the transfer progress bar for wget transfers. |
659 | 657 | ||
660 | config CONFIG_FEATURE_WGET_AUTHENTICATION | 658 | config CONFIG_FEATURE_WGET_AUTHENTICATION |
661 | bool " Enable HTTP authentication" | 659 | bool "Enable HTTP authentication" |
662 | default y | 660 | default y |
663 | depends on CONFIG_WGET | 661 | depends on CONFIG_WGET |
664 | help | 662 | help |
665 | Support authenticated HTTP transfers. | 663 | Support authenticated HTTP transfers. |
666 | 664 | ||
667 | config CONFIG_FEATURE_WGET_IP6_LITERAL | 665 | config CONFIG_FEATURE_WGET_IP6_LITERAL |
668 | bool " Enable IPv6 literal addresses" | 666 | bool "Enable IPv6 literal addresses" |
669 | default y | 667 | default y |
670 | depends on CONFIG_WGET && CONFIG_FEATURE_IPV6 | 668 | depends on CONFIG_WGET && CONFIG_FEATURE_IPV6 |
671 | help | 669 | help |