Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "Networking Utilities" |
| 7 | |
| 8 | config CONFIG_FEATURE_IPV6 |
| 9 | bool "Enable IPv6 support" |
| 10 | default n |
| 11 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 12 | Enable IPv6 support to busybox. This makes applets that talk IP |
| 13 | able to work with IPv6. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 14 | |
Glenn L McGrath | 9e59841 | 2003-01-09 10:06:01 +0000 | [diff] [blame] | 15 | config CONFIG_ARPING |
| 16 | bool "arping" |
| 17 | default n |
| 18 | help |
| 19 | Ping hosts by ARP packets |
| 20 | |
Mike Frysinger | fa69f11 | 2005-04-17 07:24:19 +0000 | [diff] [blame] | 21 | config CONFIG_FAKEIDENTD |
| 22 | bool "fakeidentd" |
| 23 | default n |
| 24 | help |
| 25 | fakeidentd listens to the ident port and returns a set fake |
| 26 | value whatever it gets. |
| 27 | |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 28 | config CONFIG_FTPGET |
| 29 | bool "ftpget" |
| 30 | default n |
| 31 | help |
| 32 | Retrieve a remote file via FTP. |
| 33 | |
| 34 | config CONFIG_FTPPUT |
| 35 | bool "ftpput" |
| 36 | default n |
| 37 | help |
| 38 | Store a remote file via FTP. |
| 39 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 40 | config CONFIG_HOSTNAME |
| 41 | bool "hostname" |
| 42 | default n |
| 43 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 44 | Show or set the system's host name |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 45 | |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 46 | config CONFIG_HTTPD |
| 47 | bool "httpd" |
| 48 | default n |
| 49 | help |
| 50 | Serve web pages via an HTTP server. |
| 51 | |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 52 | config CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 53 | bool " Support using httpd only from inetd" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 54 | default n |
| 55 | depends on CONFIG_HTTPD |
| 56 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 57 | This option disables uid and port options for the httpd applet |
| 58 | but requires inetd server daemon. |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 59 | |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 60 | config CONFIG_FEATURE_HTTPD_BASIC_AUTH |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 61 | bool " Enable Basic http Authentication" |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 62 | default y |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 63 | depends on CONFIG_HTTPD |
| 64 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 65 | Utilizes password settings from /etc/httpd.conf for basic |
| 66 | authentication on a per url basis. |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 67 | |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 68 | config CONFIG_FEATURE_HTTPD_AUTH_MD5 |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 69 | bool " Support MD5 crypted passwords for http Authentication" |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 70 | default n |
| 71 | depends on CONFIG_FEATURE_HTTPD_BASIC_AUTH |
| 72 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 73 | Enables basic per url authentication from /etc/httpd.conf |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 74 | using md5 passwords. |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 75 | |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 76 | |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 77 | if !CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 78 | config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 79 | bool " Support reloading the global config file using hup signal" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 80 | default n |
| 81 | depends on CONFIG_HTTPD |
| 82 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 83 | This option enables processing of SIGHUP to reload cached |
| 84 | configuration settings. |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 85 | |
| 86 | config CONFIG_FEATURE_HTTPD_SETUID |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 87 | bool " Enable support -u <user> option" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 88 | default n |
| 89 | depends on CONFIG_HTTPD |
| 90 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 91 | This option allows the server to run as a specific user |
| 92 | rather than defaulting to the user that starts the server. |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 93 | Use of this option requires special privileges to change to a |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 94 | different user. |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 95 | endif |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 96 | |
| 97 | config CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 98 | bool " Support loading additional MIME types at run-time" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 99 | default n |
| 100 | depends on CONFIG_HTTPD |
| 101 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 102 | This option enables support for additional MIME types at |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 103 | run-time to be specified in the configuration file. |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 104 | |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 105 | config CONFIG_FEATURE_HTTPD_CGI |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 106 | bool " Support Common Gateway Interface (CGI)" |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 107 | default y |
| 108 | depends on CONFIG_HTTPD |
| 109 | help |
| 110 | This option allows scripts and executables to be invoked |
| 111 | when specific urls are requested. |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 112 | |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 113 | config CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV |
Eric Andersen | f3a02bb | 2003-07-28 08:31:56 +0000 | [diff] [blame] | 114 | bool " Support the REMOTE_PORT environment variable for CGI" |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 115 | default n |
| 116 | depends on CONFIG_FEATURE_HTTPD_CGI |
| 117 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 118 | Use of this option can assist scripts in generating |
| 119 | references that contain a unique port number. |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 120 | |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 121 | config CONFIG_FEATURE_HTTPD_ENCODE_URL_STR |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 122 | bool " Enable the -e option for shell script CGI simplification." |
| 123 | default y |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 124 | depends on CONFIG_HTTPD |
| 125 | help |
Glenn L McGrath | d3af409 | 2003-05-14 12:20:21 +0000 | [diff] [blame] | 126 | After set, this option allows html encoding arbitrary |
| 127 | strings for display of the browser. Output goes to stdout. |
| 128 | For example, httpd -e "<Hello World>" as |
| 129 | "<Hello World>". |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 130 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 131 | config CONFIG_IFCONFIG |
| 132 | bool "ifconfig" |
| 133 | default n |
| 134 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 135 | Ifconfig is used to configure the kernel-resident network interfaces. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 136 | |
| 137 | config CONFIG_FEATURE_IFCONFIG_STATUS |
| 138 | bool " Enable status reporting output (+7k)" |
| 139 | default y |
| 140 | depends on CONFIG_IFCONFIG |
| 141 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 142 | If ifconfig is called with no arguments it will display the status |
| 143 | of the currently active interfaces. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 144 | |
| 145 | config CONFIG_FEATURE_IFCONFIG_SLIP |
| 146 | bool " Enable slip-specific options \"keepalive\" and \"outfill\"" |
| 147 | default n |
| 148 | depends on CONFIG_IFCONFIG |
| 149 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 150 | Allow "keepalive" and "outfill" support for SLIP. If you're not |
| 151 | planning on using serial lines, leave this unchecked. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 152 | |
| 153 | config CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ |
| 154 | bool " Enable options \"mem_start\", \"io_addr\", and \"irq\"" |
| 155 | default n |
| 156 | depends on CONFIG_IFCONFIG |
| 157 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 158 | Allow the start address for shared memory, start address for I/O, |
| 159 | and/or the interrupt line used by the specified device. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 160 | |
| 161 | config CONFIG_FEATURE_IFCONFIG_HW |
| 162 | bool " Enable option \"hw\" (ether only)" |
| 163 | default y |
| 164 | depends on CONFIG_IFCONFIG |
| 165 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 166 | Set the hardware address of this interface, if the device driver |
| 167 | supports this operation. Currently, we only support the 'ether' |
| 168 | class. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 169 | |
| 170 | config CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS |
| 171 | bool " Set the broadcast automatically" |
| 172 | default n |
| 173 | depends on CONFIG_IFCONFIG |
| 174 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 175 | Setting this will make ifconfig attempt to find the broadcast |
| 176 | automatically if the value '+' is used. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 177 | |
| 178 | config CONFIG_IFUPDOWN |
| 179 | bool "ifupdown" |
| 180 | default n |
| 181 | help |
Eric Andersen | 342aea9 | 2003-07-26 09:27:02 +0000 | [diff] [blame] | 182 | Activate or deactivate the specified interfaces. This applet makes |
| 183 | use of either "ifconfig" and "route" or the "ip" command to actually |
| 184 | configure network interfaces. Therefore, you will probably also want |
| 185 | to enable either CONFIG_IFCONFIG and CONFIG_ROUTE, or enable |
| 186 | CONFIG_FEATURE_IFUPDOWN_IP and the various CONFIG_IP options. Of |
| 187 | course you could use non-busybox versions of these programs, so |
| 188 | against my better judgement (since this will surely result in plenty |
| 189 | of support questions on the mailing list), I do not force you to |
| 190 | enable these additional options. It is up to you to supply either |
| 191 | "ifconfig" and "route" or the "ip" command, either via busybox or via |
| 192 | standalone utilities. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 193 | |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 194 | config CONFIG_FEATURE_IFUPDOWN_IP |
| 195 | bool " Use ip applet" |
| 196 | default n |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 197 | depends on CONFIG_IFUPDOWN |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 198 | help |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 199 | Use the iproute "ip" command to implement "ifup" and "ifdown", rather |
| 200 | than the default of using the older 'ifconfig' and 'route' utilities. |
| 201 | |
| 202 | config CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN |
| 203 | bool " Use busybox ip applet" |
| 204 | default y |
| 205 | depends on CONFIG_FEATURE_IFUPDOWN_IP |
| 206 | select CONFIG_IP |
| 207 | select CONFIG_FEATURE_IP_ADDRESS |
| 208 | select CONFIG_FEATURE_IP_LINK |
| 209 | select CONFIG_FEATURE_IP_ROUTE |
| 210 | help |
| 211 | Use the busybox iproute "ip" applet to implement "ifupdown". |
| 212 | |
| 213 | If leave this disabled, you must install the full-blown iproute2 |
| 214 | utility or the "ifup" and "ifdown" applets will not work. |
| 215 | |
| 216 | config CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN |
| 217 | bool " Use busybox ifconfig and route applets" |
| 218 | default y |
| 219 | depends on CONFIG_IFUPDOWN && !CONFIG_FEATURE_IFUPDOWN_IP |
| 220 | select CONFIG_IFCONFIG |
| 221 | select CONFIG_ROUTE |
| 222 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 223 | Use the busybox iproute "ifconfig" and "route" applets to |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 224 | implement the "ifup" and "ifdown" utilities. |
| 225 | |
| 226 | If leave this disabled, you must install the full-blown ifconfig |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 227 | and route utilities, or the "ifup" and "ifdown" applets will not |
Eric Andersen | c601ff1 | 2003-08-08 23:12:12 +0000 | [diff] [blame] | 228 | work. |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 229 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 230 | config CONFIG_FEATURE_IFUPDOWN_IPV4 |
| 231 | bool " Enable support for IPv4" |
| 232 | default y |
| 233 | depends on CONFIG_IFUPDOWN |
| 234 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 235 | If you want busybox to talk IPv4, leave this on. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 236 | |
| 237 | config CONFIG_FEATURE_IFUPDOWN_IPV6 |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 238 | bool " Enable support for IPv6" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 239 | default n |
| 240 | depends on CONFIG_IFUPDOWN |
| 241 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 242 | If you need support for IPv6, turn this option on. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 243 | |
| 244 | config CONFIG_FEATURE_IFUPDOWN_IPX |
Glenn L McGrath | d66370c | 2003-01-13 21:40:38 +0000 | [diff] [blame] | 245 | bool " Enable support for IPX" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 246 | default n |
| 247 | depends on CONFIG_IFUPDOWN |
| 248 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 249 | If this option is selected you can use busybox to work with IPX |
| 250 | networks. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 251 | |
Glenn L McGrath | cdbe5e5 | 2002-12-06 08:35:55 +0000 | [diff] [blame] | 252 | config CONFIG_FEATURE_IFUPDOWN_MAPPING |
| 253 | bool " Enable mapping support" |
| 254 | default n |
| 255 | depends on CONFIG_IFUPDOWN |
| 256 | help |
| 257 | This enables support for the "mapping" stanza, unless you have |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 258 | a weird network setup you don't need it. |
Glenn L McGrath | cdbe5e5 | 2002-12-06 08:35:55 +0000 | [diff] [blame] | 259 | |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 260 | config CONFIG_INETD |
| 261 | bool "inetd" |
| 262 | default n |
| 263 | help |
| 264 | Internet superserver daemon |
| 265 | |
| 266 | config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_ECHO |
| 267 | bool " Support echo service" |
| 268 | default y |
| 269 | depends on CONFIG_INETD |
| 270 | help |
| 271 | Echo received data internal inetd service |
| 272 | |
| 273 | config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_DISCARD |
| 274 | bool " Support discard service" |
| 275 | default y |
| 276 | depends on CONFIG_INETD |
| 277 | help |
| 278 | Internet /dev/null internal inetd service |
| 279 | |
| 280 | config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_TIME |
| 281 | bool " Support time service" |
| 282 | default y |
| 283 | depends on CONFIG_INETD |
| 284 | help |
| 285 | Return 32 bit time since 1900 internal inetd service |
| 286 | |
| 287 | config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_DAYTIME |
| 288 | bool " Support daytime service" |
| 289 | default y |
| 290 | depends on CONFIG_INETD |
| 291 | help |
| 292 | Return human-readable time internal inetd service |
| 293 | |
| 294 | config CONFIG_FEATURE_INETD_SUPPORT_BILTIN_CHARGEN |
| 295 | bool " Support chargen service" |
| 296 | default y |
| 297 | depends on CONFIG_INETD |
| 298 | help |
| 299 | Familiar character generator internal inetd service |
| 300 | |
| 301 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 302 | config CONFIG_IP |
| 303 | bool "ip" |
| 304 | default n |
| 305 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 306 | The "ip" applet is a TCP/IP interface configuration and routing |
| 307 | utility. You generally don't need "ip" to use busybox with |
| 308 | TCP/IP. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 309 | |
| 310 | if CONFIG_IP && CONFIG_IPADDR |
| 311 | config CONFIG_FEATURE_IP_ADDRESS |
| 312 | default y |
| 313 | comment " address (forced enabled for ipaddr)" |
| 314 | endif |
| 315 | if ! (CONFIG_IP && CONFIG_IPADDR) |
| 316 | config CONFIG_FEATURE_IP_ADDRESS |
| 317 | bool " address" |
Glenn L McGrath | 4a4c677 | 2003-02-15 11:50:33 +0000 | [diff] [blame] | 318 | default y |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 319 | depends on CONFIG_IP |
| 320 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 321 | Address manipulation support for the "ip" applet. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 322 | endif |
| 323 | |
| 324 | if CONFIG_IP && CONFIG_IPLINK |
| 325 | config CONFIG_FEATURE_IP_LINK |
| 326 | default y |
| 327 | comment " link (forced enabled for iplink)" |
| 328 | endif |
| 329 | if !(CONFIG_IP && CONFIG_IPLINK) |
| 330 | config CONFIG_FEATURE_IP_LINK |
| 331 | bool " link" |
| 332 | default y |
| 333 | depends on CONFIG_IP |
| 334 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 335 | Configure network devices with "ip". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 336 | endif |
| 337 | |
| 338 | if CONFIG_IP && CONFIG_IPROUTE |
| 339 | config CONFIG_FEATURE_IP_ROUTE |
| 340 | default y |
| 341 | comment " route (forced enabled for iproute)" |
| 342 | endif |
| 343 | if !(CONFIG_IP && CONFIG_IPROUTE) |
| 344 | config CONFIG_FEATURE_IP_ROUTE |
| 345 | bool " route" |
| 346 | default y |
| 347 | depends on CONFIG_IP |
| 348 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 349 | Add support for routing table management to "ip". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 350 | endif |
| 351 | |
| 352 | if CONFIG_IP && CONFIG_IPTUNNEL |
| 353 | config CONFIG_FEATURE_IP_TUNNEL |
| 354 | default y |
| 355 | comment " tunnel (forced enabled for iptunnel)" |
| 356 | endif |
| 357 | if !(CONFIG_IP && CONFIG_IPTUNNEL) |
| 358 | config CONFIG_FEATURE_IP_TUNNEL |
| 359 | bool " tunnel" |
Glenn L McGrath | 4a4c677 | 2003-02-15 11:50:33 +0000 | [diff] [blame] | 360 | default n |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 361 | depends on CONFIG_IP |
| 362 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 363 | Add support for tunneling commands to "ip". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 364 | endif |
| 365 | |
| 366 | config CONFIG_IPCALC |
| 367 | bool "ipcalc" |
| 368 | default n |
| 369 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 370 | ipcalc takes an IP address and netmask and calculates the |
| 371 | resulting broadcast, network, and host range. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 372 | |
| 373 | config CONFIG_FEATURE_IPCALC_FANCY |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 374 | bool " Fancy IPCALC, more options, adds 1 kbyte" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 375 | default y |
Glenn L McGrath | 80a6041 | 2002-12-06 23:11:30 +0000 | [diff] [blame] | 376 | depends on CONFIG_IPCALC |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 377 | help |
Glenn L McGrath | 530ea42 | 2003-09-02 06:59:57 +0000 | [diff] [blame] | 378 | Adds the options hostname, prefix and silent to the output of "ipcalc". |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 379 | |
| 380 | config CONFIG_IPADDR |
| 381 | bool "ipaddr" |
| 382 | default n |
| 383 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 384 | Equivalent to selecting address support to "ip", above. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 385 | |
| 386 | config CONFIG_IPLINK |
| 387 | bool "iplink" |
| 388 | default n |
| 389 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 390 | Equivalent to selecting link support to "ip", above. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 391 | |
| 392 | config CONFIG_IPROUTE |
| 393 | bool "iproute" |
| 394 | default n |
| 395 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 396 | Equivalent to selecting route support to "ip", above. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 397 | |
| 398 | config CONFIG_IPTUNNEL |
| 399 | bool "iptunnel" |
| 400 | default n |
| 401 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 402 | Equivalent to selecting tunnel support to "ip", above. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 403 | |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 404 | config CONFIG_NAMEIF |
| 405 | bool "nameif" |
| 406 | default n |
| 407 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 408 | nameif is used to rename network interface by its MAC address. |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 409 | Renamed interfaces MUST be in the down state. |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 410 | It is possible to use a file (default: /etc/mactab) |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 411 | with list of new interface names and MACs. |
| 412 | Maximum interface name length: IF_NAMESIZE = 16 |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 413 | File fields are separated by space or tab. |
Glenn L McGrath | f03c933 | 2002-12-13 00:01:44 +0000 | [diff] [blame] | 414 | File format: |
| 415 | # Comment |
| 416 | new_interface_name XX:XX:XX:XX:XX:XX |
| 417 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 418 | config CONFIG_NC |
| 419 | bool "nc" |
| 420 | default n |
| 421 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 422 | A simple Unix utility which reads and writes data across network |
| 423 | connections. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 424 | |
Mike Frysinger | 7dc7f40 | 2005-05-06 05:00:34 +0000 | [diff] [blame^] | 425 | config CONFIG_NC_GAPING_SECURITY_HOLE |
| 426 | bool "gaping security hole" |
| 427 | default n |
| 428 | depends on CONFIG_NC |
| 429 | help |
| 430 | Add support for executing a program after making or receiving a |
| 431 | successful connection (-e option). |
| 432 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 433 | config CONFIG_NETSTAT |
| 434 | bool "netstat" |
| 435 | default n |
| 436 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 437 | netstat prints information about the Linux networking subsystem. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 438 | |
| 439 | config CONFIG_NSLOOKUP |
| 440 | bool "nslookup" |
| 441 | default n |
| 442 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 443 | nslookup is a tool to query Internet name servers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 444 | |
| 445 | config CONFIG_PING |
| 446 | bool "ping" |
| 447 | default n |
| 448 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 449 | ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 450 | elicit an ICMP ECHO_RESPONSE from a host or gateway. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 451 | |
| 452 | config CONFIG_FEATURE_FANCY_PING |
| 453 | bool " Enable fancy ping output" |
| 454 | default y |
| 455 | depends on CONFIG_PING |
| 456 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 457 | Make the output from the ping applet include statistics, and at the |
| 458 | same time provide full support for ICMP packets. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 459 | |
| 460 | config CONFIG_PING6 |
| 461 | bool "ping6" |
| 462 | default n |
| 463 | depends on CONFIG_FEATURE_IPV6 |
| 464 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 465 | This will give you a ping that can talk IPv6. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 466 | |
| 467 | config CONFIG_FEATURE_FANCY_PING6 |
| 468 | bool " Enable fancy ping6 output" |
| 469 | default y |
| 470 | depends on CONFIG_PING6 |
| 471 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 472 | Make the output from the ping6 applet include statistics, and at the |
| 473 | same time provide full support for ICMP packets. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 474 | |
| 475 | config CONFIG_ROUTE |
| 476 | bool "route" |
| 477 | default n |
| 478 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 479 | Route displays or manipulates the kernel's IP routing tables. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 480 | |
| 481 | config CONFIG_TELNET |
| 482 | bool "telnet" |
| 483 | default n |
| 484 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 485 | Telnet is an interface to the TELNET protocol, but is also commonly |
| 486 | used to test other simple protocols. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 487 | |
| 488 | config CONFIG_FEATURE_TELNET_TTYPE |
| 489 | bool " Pass TERM type to remote host" |
| 490 | default y |
Glenn L McGrath | 80a6041 | 2002-12-06 23:11:30 +0000 | [diff] [blame] | 491 | depends on CONFIG_TELNET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 492 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 493 | Setting this option will forward the TERM environment variable to the |
| 494 | remote host you are connecting to. This is useful to make sure that |
| 495 | things like ANSI colors and other control sequences behave. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 496 | |
Eric Andersen | 539ffc9 | 2004-02-22 12:25:47 +0000 | [diff] [blame] | 497 | config CONFIG_FEATURE_TELNET_AUTOLOGIN |
| 498 | bool " Pass USER type to remote host" |
| 499 | default y |
| 500 | depends on CONFIG_TELNET |
| 501 | help |
| 502 | Setting this option will forward the USER environment variable to the |
| 503 | remote host you are connecting to. This is useful when you need to |
| 504 | log into a machine without telling the username (autologin). This |
| 505 | option enables `-a' and `-l USER' arguments. |
| 506 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 507 | config CONFIG_TELNETD |
| 508 | bool "telnetd" |
| 509 | default n |
Eric Andersen | 31ec93e | 2004-09-23 20:08:46 +0000 | [diff] [blame] | 510 | select CONFIG_LOGIN |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 511 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 512 | A daemon for the TELNET protocol, allowing you to log onto the host |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 513 | running the daemon. Please keep in mind that the TELNET protocol |
Eric Andersen | 31ec93e | 2004-09-23 20:08:46 +0000 | [diff] [blame] | 514 | sends passwords in plain text. If you can't afford the space for an |
| 515 | SSH daemon and you trust your network, you may say 'y' here. As a |
| 516 | more secure alternative, you should seriously consider installing the |
| 517 | very small Dropbear SSH daemon instead: |
| 518 | http://matt.ucc.asn.au/dropbear/dropbear.html |
| 519 | |
| 520 | Note that for busybox telnetd to work you need several things: |
| 521 | First of all, your kernel needs: |
| 522 | CONFIG_UNIX98_PTYS=y |
| 523 | CONFIG_DEVPTS_FS=y |
| 524 | |
| 525 | Next, you need a /dev/pts directory on your root filesystem: |
| 526 | |
| 527 | $ ls -ld /dev/pts |
| 528 | drwxr-xr-x 2 root root 0 Sep 23 13:21 /dev/pts/ |
| 529 | |
| 530 | Next you need the pseudo terminal master multiplexer /dev/ptmx: |
| 531 | |
| 532 | $ ls -la /dev/ptmx |
| 533 | crw-rw-rw- 1 root tty 5, 2 Sep 23 13:55 /dev/ptmx |
| 534 | |
| 535 | Any /dev/ttyp[0-9]* files you may have can be removed. |
| 536 | Next, you need to mount the devpts filesystem on /dev/pts using: |
| 537 | |
| 538 | mount -t devpts devpts /dev/pts |
| 539 | |
| 540 | You need to be sure that Busybox has CONFIG_LOGIN and |
| 541 | CONFIG_FEATURE_SUID enabled. And finally, you should make |
| 542 | certain that Busybox has been installed setuid root: |
| 543 | |
| 544 | chown root.root /bin/busybox |
| 545 | chmod 4755 /bin/busybox |
| 546 | |
| 547 | with all that done, telnetd _should_ work.... |
| 548 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 549 | |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 550 | config CONFIG_FEATURE_TELNETD_INETD |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 551 | bool " Support call from inetd only" |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 552 | default n |
| 553 | depends on CONFIG_TELNETD |
| 554 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 555 | Selecting this will make telnetd only callable from inetd, |
| 556 | removing the standalone support. |
Glenn L McGrath | 9e5d6c0 | 2003-01-21 20:55:56 +0000 | [diff] [blame] | 557 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 558 | config CONFIG_TFTP |
| 559 | bool "tftp" |
| 560 | default n |
| 561 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 562 | This enables the Trivial File Transfer Protocol client program. TFTP |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 563 | is usually used for simple, small transfers such as a root image |
| 564 | for a network-enabled bootloader. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 565 | |
| 566 | config CONFIG_FEATURE_TFTP_GET |
| 567 | bool " Enable \"get\" command" |
| 568 | default y |
| 569 | depends on CONFIG_TFTP |
| 570 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 571 | Add support for the GET command within the TFTP client. This allows |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 572 | a client to retrieve a file from a TFTP server. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 573 | |
| 574 | config CONFIG_FEATURE_TFTP_PUT |
| 575 | bool " Enable \"put\" command" |
| 576 | default y |
| 577 | depends on CONFIG_TFTP |
| 578 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 579 | Add support for the PUT command within the TFTP client. This allows |
| 580 | a client to transfer a file to a TFTP server. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 581 | |
| 582 | config CONFIG_FEATURE_TFTP_BLOCKSIZE |
| 583 | bool " Enable \"blocksize\" command" |
| 584 | default n |
| 585 | depends on CONFIG_TFTP |
| 586 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 587 | Allow the client to specify the desired block size for transfers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 588 | |
| 589 | config CONFIG_FEATURE_TFTP_DEBUG |
| 590 | bool " Enable debug" |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 591 | default n |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 592 | depends on CONFIG_TFTP |
| 593 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 594 | Enable debug settings for tftp. This is useful if you're running |
| 595 | into problems with tftp as the protocol doesn't help you much when |
| 596 | you run into problems. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 597 | |
| 598 | config CONFIG_TRACEROUTE |
| 599 | bool "traceroute" |
| 600 | default n |
| 601 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 602 | Utility to trace the route of IP packets |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 603 | |
| 604 | config CONFIG_FEATURE_TRACEROUTE_VERBOSE |
| 605 | bool " Enable verbose output" |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 606 | default n |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 607 | depends on CONFIG_TRACEROUTE |
| 608 | help |
Eric Andersen | 9c3c38d | 2003-07-22 09:59:34 +0000 | [diff] [blame] | 609 | Add some verbosity to traceroute. This includes amongst other things |
| 610 | hostnames and ICMP response types. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 611 | |
Eric Andersen | 853c494 | 2003-01-23 05:59:32 +0000 | [diff] [blame] | 612 | config CONFIG_VCONFIG |
| 613 | bool "vconfig" |
| 614 | default n |
| 615 | help |
| 616 | Creates, removes, and configures VLAN interfaces |
| 617 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 618 | config CONFIG_WGET |
| 619 | bool "wget" |
| 620 | default n |
| 621 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 622 | wget is a utility for non-interactive download of files from HTTP, |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 623 | HTTPS, and FTP servers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 624 | |
| 625 | config CONFIG_FEATURE_WGET_STATUSBAR |
| 626 | bool " Enable a nifty process meter (+2k)" |
| 627 | default y |
| 628 | depends on CONFIG_WGET |
| 629 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 630 | Enable the transfer progress bar for wget transfers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 631 | |
| 632 | config CONFIG_FEATURE_WGET_AUTHENTICATION |
| 633 | bool " Enable HTTP authentication" |
| 634 | default y |
| 635 | depends on CONFIG_WGET |
| 636 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 637 | Support authenticated HTTP transfers. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 638 | |
Glenn L McGrath | cc20ebc | 2003-09-10 23:52:15 +0000 | [diff] [blame] | 639 | config CONFIG_FEATURE_WGET_IP6_LITERAL |
| 640 | bool " Enable IPv6 literal addresses" |
| 641 | default y |
| 642 | depends on CONFIG_WGET |
| 643 | help |
| 644 | Support IPv6 address literal notation in URLs. |
| 645 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 646 | source networking/udhcp/Config.in |
| 647 | |
Rob Landley | ad8071f | 2005-04-30 03:49:37 +0000 | [diff] [blame] | 648 | config CONFIG_ZCIP |
| 649 | bool "zcip" |
| 650 | default n |
| 651 | help |
| 652 | ZCIP provides ZeroConf IPv4 address selection, according to RFC 3927. |
| 653 | It's a daemon that allocates and defends a dynamically assigned |
| 654 | address on the 169.254/16 network, requiring no system administrator. |
| 655 | |
| 656 | See http://www.zeroconf.org for further details, and "zcip.script" |
| 657 | in the busybox examples. |
| 658 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 659 | endmenu |
| 660 | |