diff options
| author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-07-22 09:59:34 +0000 |
|---|---|---|
| committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-07-22 09:59:34 +0000 |
| commit | 1b90eedbcb35e6efa45ab1cc54857dedcafdf0d7 (patch) | |
| tree | d01448ecbe7f0a238dad86a93fb0c8e1d50f3c45 | |
| parent | c5385783973ca04c4403a9153fc8f20cd4cd24b2 (diff) | |
| download | busybox-w32-1b90eedbcb35e6efa45ab1cc54857dedcafdf0d7.tar.gz busybox-w32-1b90eedbcb35e6efa45ab1cc54857dedcafdf0d7.tar.bz2 busybox-w32-1b90eedbcb35e6efa45ab1cc54857dedcafdf0d7.zip | |
Patch from Terje Kvernes adding quite a lot of missing documentation
git-svn-id: svn://busybox.net/trunk/busybox@7093 69ca8d6d-28ef-0310-b511-8ec308f3f277
| -rw-r--r-- | editors/Config.in | 24 | ||||
| -rw-r--r-- | loginutils/Config.in | 22 | ||||
| -rw-r--r-- | modutils/Config.in | 15 | ||||
| -rw-r--r-- | networking/Config.in | 72 | ||||
| -rw-r--r-- | procps/Config.in | 2 | ||||
| -rw-r--r-- | shell/Config.in | 5 |
6 files changed, 92 insertions, 48 deletions
diff --git a/editors/Config.in b/editors/Config.in index 22908de4d..14b698f5d 100644 --- a/editors/Config.in +++ b/editors/Config.in | |||
| @@ -56,35 +56,40 @@ config CONFIG_FEATURE_VI_COLON | |||
| 56 | default y | 56 | default y |
| 57 | depends on CONFIG_VI | 57 | depends on CONFIG_VI |
| 58 | help | 58 | help |
| 59 | Please submit a patch to add help text for this item. | 59 | Enable a limited set of colon commands for vi. This does not |
| 60 | provide an "ex" mode. | ||
| 60 | 61 | ||
| 61 | config CONFIG_FEATURE_VI_YANKMARK | 62 | config CONFIG_FEATURE_VI_YANKMARK |
| 62 | bool " Enable yank/put commands and mark cmds" | 63 | bool " Enable yank/put commands and mark cmds" |
| 63 | default y | 64 | default y |
| 64 | depends on CONFIG_VI | 65 | depends on CONFIG_VI |
| 65 | help | 66 | help |
| 66 | Please submit a patch to add help text for this item. | 67 | This will enable you to use yank and put, as well as mark in |
| 68 | busybox vi. | ||
| 67 | 69 | ||
| 68 | config CONFIG_FEATURE_VI_SEARCH | 70 | config CONFIG_FEATURE_VI_SEARCH |
| 69 | bool " Enable search and replace cmds" | 71 | bool " Enable search and replace cmds" |
| 70 | default y | 72 | default y |
| 71 | depends on CONFIG_VI | 73 | depends on CONFIG_VI |
| 72 | help | 74 | help |
| 73 | Please submit a patch to add help text for this item. | 75 | Select this if you wish to be able to do search and replace in |
| 76 | busybox vi. | ||
| 74 | 77 | ||
| 75 | config CONFIG_FEATURE_VI_USE_SIGNALS | 78 | config CONFIG_FEATURE_VI_USE_SIGNALS |
| 76 | bool " Catch signals" | 79 | bool " Catch signals" |
| 77 | default y | 80 | default y |
| 78 | depends on CONFIG_VI | 81 | depends on CONFIG_VI |
| 79 | help | 82 | help |
| 80 | Please submit a patch to add help text for this item. | 83 | Selecting this option will make busybox vi signal aware. This will |
| 84 | make busybox vi support SIGWINCH to deal with Window Changes, catch | ||
| 85 | Ctrl-Z and Ctrl-C and alarms. | ||
| 81 | 86 | ||
| 82 | config CONFIG_FEATURE_VI_DOT_CMD | 87 | config CONFIG_FEATURE_VI_DOT_CMD |
| 83 | bool " Remember previous cmd and \".\" cmd" | 88 | bool " Remember previous cmd and \".\" cmd" |
| 84 | default y | 89 | default y |
| 85 | depends on CONFIG_VI | 90 | depends on CONFIG_VI |
| 86 | help | 91 | help |
| 87 | Please submit a patch to add help text for this item. | 92 | Make busybox vi remember the last command and be able to repeat it. |
| 88 | 93 | ||
| 89 | config CONFIG_FEATURE_VI_READONLY | 94 | config CONFIG_FEATURE_VI_READONLY |
| 90 | bool " Enable -R option and \"view\" mode" | 95 | bool " Enable -R option and \"view\" mode" |
| @@ -99,28 +104,29 @@ config CONFIG_FEATURE_VI_SETOPTS | |||
| 99 | default y | 104 | default y |
| 100 | depends on CONFIG_VI | 105 | depends on CONFIG_VI |
| 101 | help | 106 | help |
| 102 | Please submit a patch to add help text for this item. | 107 | Enable the editor to set some (ai, ic, showmatch) options. |
| 103 | 108 | ||
| 104 | config CONFIG_FEATURE_VI_SET | 109 | config CONFIG_FEATURE_VI_SET |
| 105 | bool " Support for :set" | 110 | bool " Support for :set" |
| 106 | default y | 111 | default y |
| 107 | depends on CONFIG_VI | 112 | depends on CONFIG_VI |
| 108 | help | 113 | help |
| 109 | Please submit a patch to add help text for this item. | 114 | Support for ":set". |
| 110 | 115 | ||
| 111 | config CONFIG_FEATURE_VI_WIN_RESIZE | 116 | config CONFIG_FEATURE_VI_WIN_RESIZE |
| 112 | bool " Handle window resize" | 117 | bool " Handle window resize" |
| 113 | default y | 118 | default y |
| 114 | depends on CONFIG_VI | 119 | depends on CONFIG_VI |
| 115 | help | 120 | help |
| 116 | Please submit a patch to add help text for this item. | 121 | Make busybox vi behave nicely with terminals that get resized. |
| 117 | 122 | ||
| 118 | config CONFIG_FEATURE_VI_OPTIMIZE_CURSOR | 123 | config CONFIG_FEATURE_VI_OPTIMIZE_CURSOR |
| 119 | bool " Optimize cursor movement" | 124 | bool " Optimize cursor movement" |
| 120 | default y | 125 | default y |
| 121 | depends on CONFIG_VI | 126 | depends on CONFIG_VI |
| 122 | help | 127 | help |
| 123 | Please submit a patch to add help text for this item. | 128 | This will make the cursor movement faster, but requires more memory |
| 129 | and it makes the applet a tiny bit larger. | ||
| 124 | 130 | ||
| 125 | endmenu | 131 | endmenu |
| 126 | 132 | ||
diff --git a/loginutils/Config.in b/loginutils/Config.in index 494ddbd6b..9b40871e6 100644 --- a/loginutils/Config.in +++ b/loginutils/Config.in | |||
| @@ -55,7 +55,7 @@ config CONFIG_GETTY | |||
| 55 | bool "getty" | 55 | bool "getty" |
| 56 | default n | 56 | default n |
| 57 | help | 57 | help |
| 58 | Please submit a patch to add help text for this item. | 58 | Getty lets you log in on a tty, it is normally invoked by init. |
| 59 | 59 | ||
| 60 | config CONFIG_LOGIN | 60 | config CONFIG_LOGIN |
| 61 | bool "login" | 61 | bool "login" |
| @@ -99,7 +99,7 @@ config CONFIG_VLOCK | |||
| 99 | bool "vlock" | 99 | bool "vlock" |
| 100 | default n | 100 | default n |
| 101 | help | 101 | help |
| 102 | Please submit a patch to add help text for this item. | 102 | Build the "vlock" applet, that allows you to lock (virtual) terminals. |
| 103 | 103 | ||
| 104 | comment "Common options for adduser, deluser, login, su" | 104 | comment "Common options for adduser, deluser, login, su" |
| 105 | depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU | 105 | depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU |
| @@ -109,14 +109,28 @@ config CONFIG_FEATURE_SHADOWPASSWDS | |||
| 109 | default n | 109 | default n |
| 110 | depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU | 110 | depends on CONFIG_ADDUSER || CONFIG_DELUSER || CONFIG_LOGIN || CONFIG_SU |
| 111 | help | 111 | help |
| 112 | Please submit a patch to add help text for this item. | 112 | Build support for shadow password in /etc/shadow. This file is only |
| 113 | only readable by root and thus the encrypted passwords are no longer | ||
| 114 | publicly readable. | ||
| 113 | 115 | ||
| 114 | config CONFIG_USE_BB_SHADOW | 116 | config CONFIG_USE_BB_SHADOW |
| 115 | bool " Use busybox shadow password functions" | 117 | bool " Use busybox shadow password functions" |
| 116 | default n | 118 | default n |
| 117 | depends on CONFIG_USE_BB_PWD_GRP && CONFIG_FEATURE_SHADOWPASSWDS | 119 | depends on CONFIG_USE_BB_PWD_GRP && CONFIG_FEATURE_SHADOWPASSWDS |
| 118 | help | 120 | help |
| 119 | Please submit a patch to add help text for this item. | 121 | If you leave this disabled, busybox will use the system's shadow |
| 122 | password handling functions. And if you are using the GNU C library | ||
| 123 | (glibc), you will then need to install the /etc/nsswitch.conf | ||
| 124 | configuration file and the required /lib/libnss_* libraries in | ||
| 125 | order for the shadow password functions to work. This generally | ||
| 126 | makes your embedded system quite a bit larger. | ||
| 127 | |||
| 128 | Enabling this option will cause busybox to directly access the | ||
| 129 | system's /etc/shadow file when handling shadow passwords. This | ||
| 130 | makes your system smaller and I will get fewer emails asking about | ||
| 131 | how glibc NSS works). When this option is enabled, you will not be | ||
| 132 | able to use PAM to access shadow passwords from remote LDAP | ||
| 133 | password servers and whatnot. | ||
| 120 | 134 | ||
| 121 | endmenu | 135 | endmenu |
| 122 | 136 | ||
diff --git a/modutils/Config.in b/modutils/Config.in index a635656e5..2006be00f 100644 --- a/modutils/Config.in +++ b/modutils/Config.in | |||
| @@ -16,7 +16,7 @@ config CONFIG_FEATURE_OLD_MODULE_INTERFACE | |||
| 16 | default n | 16 | default n |
| 17 | depends on CONFIG_INSMOD | 17 | depends on CONFIG_INSMOD |
| 18 | help | 18 | help |
| 19 | Please submit a patch to add help text for this item. | 19 | Provide insmod support for older (pre 2.1) Linux kernels. |
| 20 | 20 | ||
| 21 | if CONFIG_INSMOD && !CONFIG_FEATURE_OLD_MODULE_INTERFACE | 21 | if CONFIG_INSMOD && !CONFIG_FEATURE_OLD_MODULE_INTERFACE |
| 22 | config CONFIG_FEATURE_NEW_MODULE_INTERFACE | 22 | config CONFIG_FEATURE_NEW_MODULE_INTERFACE |
| @@ -30,7 +30,7 @@ config CONFIG_FEATURE_NEW_MODULE_INTERFACE | |||
| 30 | default y | 30 | default y |
| 31 | depends on CONFIG_INSMOD | 31 | depends on CONFIG_INSMOD |
| 32 | help | 32 | help |
| 33 | Please submit a patch to add help text for this item. | 33 | Support module loading for newer (post 2.1) Linux kernels. |
| 34 | endif | 34 | endif |
| 35 | 35 | ||
| 36 | config CONFIG_FEATURE_INSMOD_VERSION_CHECKING | 36 | config CONFIG_FEATURE_INSMOD_VERSION_CHECKING |
| @@ -38,7 +38,8 @@ config CONFIG_FEATURE_INSMOD_VERSION_CHECKING | |||
| 38 | default n | 38 | default n |
| 39 | depends on CONFIG_INSMOD | 39 | depends on CONFIG_INSMOD |
| 40 | help | 40 | help |
| 41 | Please submit a patch to add help text for this item. | 41 | Support checking of versions for modules. This is used to |
| 42 | ensure that the kernel and module are made for each other. | ||
| 42 | 43 | ||
| 43 | config CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS | 44 | config CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS |
| 44 | bool " Add module symbols to kernel symbol table" | 45 | bool " Add module symbols to kernel symbol table" |
| @@ -90,7 +91,9 @@ config CONFIG_FEATURE_QUERY_MODULE_INTERFACE | |||
| 90 | default y | 91 | default y |
| 91 | depends on CONFIG_LSMOD && CONFIG_FEATURE_NEW_MODULE_INTERFACE | 92 | depends on CONFIG_LSMOD && CONFIG_FEATURE_NEW_MODULE_INTERFACE |
| 92 | help | 93 | help |
| 93 | Please submit a patch to add help text for this item. | 94 | This will provide some extra information about each module when |
| 95 | running lsmod. The fields provided are address, size, flags and | ||
| 96 | usage count. | ||
| 94 | 97 | ||
| 95 | config CONFIG_MODPROBE | 98 | config CONFIG_MODPROBE |
| 96 | bool "modprobe" | 99 | bool "modprobe" |
| @@ -110,7 +113,9 @@ config CONFIG_FEATURE_CHECK_TAINTED_MODULE | |||
| 110 | default y | 113 | default y |
| 111 | depends on CONFIG_INSMOD || CONFIG_LSMOD | 114 | depends on CONFIG_INSMOD || CONFIG_LSMOD |
| 112 | help | 115 | help |
| 113 | Please submit a patch to add help text for this item. | 116 | Support checking for tainted modules. These are usually binary |
| 117 | only modules that will make the linux-kernel list ignore your | ||
| 118 | support request. | ||
| 114 | 119 | ||
| 115 | 120 | ||
| 116 | endmenu | 121 | endmenu |
diff --git a/networking/Config.in b/networking/Config.in index 4c5cb8526..d53dddcc1 100644 --- a/networking/Config.in +++ b/networking/Config.in | |||
| @@ -9,7 +9,8 @@ config CONFIG_FEATURE_IPV6 | |||
| 9 | bool "Enable IPv6 support" | 9 | bool "Enable IPv6 support" |
| 10 | default n | 10 | default n |
| 11 | help | 11 | help |
| 12 | Please submit a patch to add help text for this item. | 12 | Enable IPv6 support to busybox. This makes applets that talk IP |
| 13 | able to work with IPv6. | ||
| 13 | 14 | ||
| 14 | config CONFIG_ARPING | 15 | config CONFIG_ARPING |
| 15 | bool "arping" | 16 | bool "arping" |
| @@ -143,7 +144,8 @@ config CONFIG_FEATURE_IFCONFIG_SLIP | |||
| 143 | default n | 144 | default n |
| 144 | depends on CONFIG_IFCONFIG | 145 | depends on CONFIG_IFCONFIG |
| 145 | help | 146 | help |
| 146 | Please submit a patch to add help text for this item. | 147 | Allow "keepalive" and "outfill" support for SLIP. If you're not |
| 148 | planning on using serial lines, leave this unchecked. | ||
| 147 | 149 | ||
| 148 | config CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ | 150 | config CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ |
| 149 | bool " Enable options \"mem_start\", \"io_addr\", and \"irq\"" | 151 | bool " Enable options \"mem_start\", \"io_addr\", and \"irq\"" |
| @@ -167,7 +169,8 @@ config CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS | |||
| 167 | default n | 169 | default n |
| 168 | depends on CONFIG_IFCONFIG | 170 | depends on CONFIG_IFCONFIG |
| 169 | help | 171 | help |
| 170 | Please submit a patch to add help text for this item. | 172 | Setting this will make ifconfig attempt to find the broadcast |
| 173 | automatically if the value '+' is used. | ||
| 171 | 174 | ||
| 172 | config CONFIG_IFUPDOWN | 175 | config CONFIG_IFUPDOWN |
| 173 | bool "ifupdown" | 176 | bool "ifupdown" |
| @@ -180,28 +183,29 @@ config CONFIG_FEATURE_IFUPDOWN_IP | |||
| 180 | default n | 183 | default n |
| 181 | depends on CONFIG_IFUPDOWN && CONFIG_IP && CONFIG_FEATURE_IP_ADDRESS && CONFIG_FEATURE_IP_LINK && CONFIG_FEATURE_IP_ROUTE | 184 | depends on CONFIG_IFUPDOWN && CONFIG_IP && CONFIG_FEATURE_IP_ADDRESS && CONFIG_FEATURE_IP_LINK && CONFIG_FEATURE_IP_ROUTE |
| 182 | help | 185 | help |
| 183 | Please submit a patch to add help text for this item. | 186 | Use "ip" in "ifupdown". |
| 184 | 187 | ||
| 185 | config CONFIG_FEATURE_IFUPDOWN_IPV4 | 188 | config CONFIG_FEATURE_IFUPDOWN_IPV4 |
| 186 | bool " Enable support for IPv4" | 189 | bool " Enable support for IPv4" |
| 187 | default y | 190 | default y |
| 188 | depends on CONFIG_IFUPDOWN | 191 | depends on CONFIG_IFUPDOWN |
| 189 | help | 192 | help |
| 190 | Please submit a patch to add help text for this item. | 193 | If you want busybox to talk IPv4, leave this on. |
| 191 | 194 | ||
| 192 | config CONFIG_FEATURE_IFUPDOWN_IPV6 | 195 | config CONFIG_FEATURE_IFUPDOWN_IPV6 |
| 193 | bool " Enable support for IPv6" | 196 | bool " Enable support for IPv6" |
| 194 | default n | 197 | default n |
| 195 | depends on CONFIG_IFUPDOWN | 198 | depends on CONFIG_IFUPDOWN |
| 196 | help | 199 | help |
| 197 | Please submit a patch to add help text for this item. | 200 | If you need support for IPv6, turn this option on. |
| 198 | 201 | ||
| 199 | config CONFIG_FEATURE_IFUPDOWN_IPX | 202 | config CONFIG_FEATURE_IFUPDOWN_IPX |
| 200 | bool " Enable support for IPX" | 203 | bool " Enable support for IPX" |
| 201 | default n | 204 | default n |
| 202 | depends on CONFIG_IFUPDOWN | 205 | depends on CONFIG_IFUPDOWN |
| 203 | help | 206 | help |
| 204 | Please submit a patch to add help text for this item. | 207 | If this option is selected you can use busybox to work with IPX |
| 208 | networks. | ||
| 205 | 209 | ||
| 206 | config CONFIG_FEATURE_IFUPDOWN_MAPPING | 210 | config CONFIG_FEATURE_IFUPDOWN_MAPPING |
| 207 | bool " Enable mapping support" | 211 | bool " Enable mapping support" |
| @@ -257,7 +261,9 @@ config CONFIG_IP | |||
| 257 | bool "ip" | 261 | bool "ip" |
| 258 | default n | 262 | default n |
| 259 | help | 263 | help |
| 260 | Please submit a patch to add help text for this item. | 264 | The "ip" applet is a TCP/IP interface configuration and routing |
| 265 | utility. You generally don't need "ip" to use busybox with | ||
| 266 | TCP/IP. | ||
| 261 | 267 | ||
| 262 | if CONFIG_IP && CONFIG_IPADDR | 268 | if CONFIG_IP && CONFIG_IPADDR |
| 263 | config CONFIG_FEATURE_IP_ADDRESS | 269 | config CONFIG_FEATURE_IP_ADDRESS |
| @@ -270,7 +276,7 @@ if ! (CONFIG_IP && CONFIG_IPADDR) | |||
| 270 | default y | 276 | default y |
| 271 | depends on CONFIG_IP | 277 | depends on CONFIG_IP |
| 272 | help | 278 | help |
| 273 | Please submit a patch to add help text for this item. | 279 | Address manipulation support for the "ip" applet. |
| 274 | endif | 280 | endif |
| 275 | 281 | ||
| 276 | if CONFIG_IP && CONFIG_IPLINK | 282 | if CONFIG_IP && CONFIG_IPLINK |
| @@ -284,7 +290,7 @@ if !(CONFIG_IP && CONFIG_IPLINK) | |||
| 284 | default y | 290 | default y |
| 285 | depends on CONFIG_IP | 291 | depends on CONFIG_IP |
| 286 | help | 292 | help |
| 287 | Please submit a patch to add help text for this item. | 293 | Configure network devices with "ip". |
| 288 | endif | 294 | endif |
| 289 | 295 | ||
| 290 | if CONFIG_IP && CONFIG_IPROUTE | 296 | if CONFIG_IP && CONFIG_IPROUTE |
| @@ -298,7 +304,7 @@ if !(CONFIG_IP && CONFIG_IPROUTE) | |||
| 298 | default y | 304 | default y |
| 299 | depends on CONFIG_IP | 305 | depends on CONFIG_IP |
| 300 | help | 306 | help |
| 301 | Please submit a patch to add help text for this item. | 307 | Add support for routing table management to "ip". |
| 302 | endif | 308 | endif |
| 303 | 309 | ||
| 304 | if CONFIG_IP && CONFIG_IPTUNNEL | 310 | if CONFIG_IP && CONFIG_IPTUNNEL |
| @@ -312,7 +318,7 @@ if !(CONFIG_IP && CONFIG_IPTUNNEL) | |||
| 312 | default n | 318 | default n |
| 313 | depends on CONFIG_IP | 319 | depends on CONFIG_IP |
| 314 | help | 320 | help |
| 315 | Please submit a patch to add help text for this item. | 321 | Add support for tunneling commands to "ip". |
| 316 | endif | 322 | endif |
| 317 | 323 | ||
| 318 | config CONFIG_IPCALC | 324 | config CONFIG_IPCALC |
| @@ -327,31 +333,31 @@ config CONFIG_FEATURE_IPCALC_FANCY | |||
| 327 | default y | 333 | default y |
| 328 | depends on CONFIG_IPCALC | 334 | depends on CONFIG_IPCALC |
| 329 | help | 335 | help |
| 330 | Please submit a patch to add help text for this item. | 336 | Adds the fields hostname and silent to the output of "ipcalc". |
| 331 | 337 | ||
| 332 | config CONFIG_IPADDR | 338 | config CONFIG_IPADDR |
| 333 | bool "ipaddr" | 339 | bool "ipaddr" |
| 334 | default n | 340 | default n |
| 335 | help | 341 | help |
| 336 | Please submit a patch to add help text for this item. | 342 | Equivalent to selecting address support to "ip", above. |
| 337 | 343 | ||
| 338 | config CONFIG_IPLINK | 344 | config CONFIG_IPLINK |
| 339 | bool "iplink" | 345 | bool "iplink" |
| 340 | default n | 346 | default n |
| 341 | help | 347 | help |
| 342 | Please submit a patch to add help text for this item. | 348 | Equivalent to selecting link support to "ip", above. |
| 343 | 349 | ||
| 344 | config CONFIG_IPROUTE | 350 | config CONFIG_IPROUTE |
| 345 | bool "iproute" | 351 | bool "iproute" |
| 346 | default n | 352 | default n |
| 347 | help | 353 | help |
| 348 | Please submit a patch to add help text for this item. | 354 | Equivalent to selecting route support to "ip", above. |
| 349 | 355 | ||
| 350 | config CONFIG_IPTUNNEL | 356 | config CONFIG_IPTUNNEL |
| 351 | bool "iptunnel" | 357 | bool "iptunnel" |
| 352 | default n | 358 | default n |
| 353 | help | 359 | help |
| 354 | Please submit a patch to add help text for this item. | 360 | Equivalent to selecting tunnel support to "ip", above. |
| 355 | 361 | ||
| 356 | config CONFIG_NAMEIF | 362 | config CONFIG_NAMEIF |
| 357 | bool "nameif" | 363 | bool "nameif" |
| @@ -384,7 +390,7 @@ config CONFIG_NSLOOKUP | |||
| 384 | bool "nslookup" | 390 | bool "nslookup" |
| 385 | default n | 391 | default n |
| 386 | help | 392 | help |
| 387 | Please submit a patch to add help text for this item. | 393 | Nslookup is a tool to query Internet name servers. |
| 388 | 394 | ||
| 389 | config CONFIG_PING | 395 | config CONFIG_PING |
| 390 | bool "ping" | 396 | bool "ping" |
| @@ -398,21 +404,23 @@ config CONFIG_FEATURE_FANCY_PING | |||
| 398 | default y | 404 | default y |
| 399 | depends on CONFIG_PING | 405 | depends on CONFIG_PING |
| 400 | help | 406 | help |
| 401 | Please submit a patch to add help text for this item. | 407 | Make the output from the ping applet include statistics, and at the |
| 408 | same time provide full support for ICMP packets. | ||
| 402 | 409 | ||
| 403 | config CONFIG_PING6 | 410 | config CONFIG_PING6 |
| 404 | bool "ping6" | 411 | bool "ping6" |
| 405 | default n | 412 | default n |
| 406 | depends on CONFIG_FEATURE_IPV6 | 413 | depends on CONFIG_FEATURE_IPV6 |
| 407 | help | 414 | help |
| 408 | Please submit a patch to add help text for this item. | 415 | This will give you a ping that can talk IPv6. |
| 409 | 416 | ||
| 410 | config CONFIG_FEATURE_FANCY_PING6 | 417 | config CONFIG_FEATURE_FANCY_PING6 |
| 411 | bool " Enable fancy ping6 output" | 418 | bool " Enable fancy ping6 output" |
| 412 | default y | 419 | default y |
| 413 | depends on CONFIG_PING6 | 420 | depends on CONFIG_PING6 |
| 414 | help | 421 | help |
| 415 | Please submit a patch to add help text for this item. | 422 | Make the output from the ping6 applet include statistics, and at the |
| 423 | same time provide full support for ICMP packets. | ||
| 416 | 424 | ||
| 417 | config CONFIG_ROUTE | 425 | config CONFIG_ROUTE |
| 418 | bool "route" | 426 | bool "route" |
| @@ -424,27 +432,34 @@ config CONFIG_TELNET | |||
| 424 | bool "telnet" | 432 | bool "telnet" |
| 425 | default n | 433 | default n |
| 426 | help | 434 | help |
| 427 | Please submit a patch to add help text for this item. | 435 | Telnet is an interface to the TELNET protocol, but is also commonly |
| 436 | used to test other simple protocols. | ||
| 428 | 437 | ||
| 429 | config CONFIG_FEATURE_TELNET_TTYPE | 438 | config CONFIG_FEATURE_TELNET_TTYPE |
| 430 | bool " Pass TERM type to remote host" | 439 | bool " Pass TERM type to remote host" |
| 431 | default y | 440 | default y |
| 432 | depends on CONFIG_TELNET | 441 | depends on CONFIG_TELNET |
| 433 | help | 442 | help |
| 434 | Please submit a patch to add help text for this item. | 443 | Setting this option will forward the TERM environment variable to the |
| 444 | remote host you are connecting to. This is useful to make sure that | ||
| 445 | things like ANSI colors and other control sequences behave. | ||
| 435 | 446 | ||
| 436 | config CONFIG_TELNETD | 447 | config CONFIG_TELNETD |
| 437 | bool "telnetd" | 448 | bool "telnetd" |
| 438 | default n | 449 | default n |
| 439 | help | 450 | help |
| 440 | Please submit a patch to add help text for this item. | 451 | A daemon for the TELNET protocol, allowing you to log on to the host |
| 452 | running the daemon. Please keep in mind that the TELNET protocol | ||
| 453 | sends passwords in plain text. If you can't afford the space for | ||
| 454 | any SSH daemon and you trust your network, say 'y' here. | ||
| 441 | 455 | ||
| 442 | config CONFIG_FEATURE_TELNETD_INETD | 456 | config CONFIG_FEATURE_TELNETD_INETD |
| 443 | bool " Support call from inetd only" | 457 | bool " Support call from inetd only" |
| 444 | default n | 458 | default n |
| 445 | depends on CONFIG_TELNETD | 459 | depends on CONFIG_TELNETD |
| 446 | help | 460 | help |
| 447 | Please submit a patch to add help text for this item. | 461 | Selecting this will make telnetd only callable from inetd, removing the |
| 462 | standalone support. | ||
| 448 | 463 | ||
| 449 | config CONFIG_TFTP | 464 | config CONFIG_TFTP |
| 450 | bool "tftp" | 465 | bool "tftp" |
| @@ -482,7 +497,9 @@ config CONFIG_FEATURE_TFTP_DEBUG | |||
| 482 | default n | 497 | default n |
| 483 | depends on CONFIG_TFTP | 498 | depends on CONFIG_TFTP |
| 484 | help | 499 | help |
| 485 | Please submit a patch to add help text for this item. | 500 | Enable debug settings for tftp. This is useful if you're running |
| 501 | into problems with tftp as the protocol doesn't help you much when | ||
| 502 | you run into problems. | ||
| 486 | 503 | ||
| 487 | config CONFIG_TRACEROUTE | 504 | config CONFIG_TRACEROUTE |
| 488 | bool "traceroute" | 505 | bool "traceroute" |
| @@ -495,7 +512,8 @@ config CONFIG_FEATURE_TRACEROUTE_VERBOSE | |||
| 495 | default n | 512 | default n |
| 496 | depends on CONFIG_TRACEROUTE | 513 | depends on CONFIG_TRACEROUTE |
| 497 | help | 514 | help |
| 498 | Please submit a patch to add help text for this item. | 515 | Add some verbosity to traceroute. This includes amongst other things |
| 516 | hostnames and ICMP response types. | ||
| 499 | 517 | ||
| 500 | config CONFIG_FEATURE_TRACEROUTE_SO_DEBUG | 518 | config CONFIG_FEATURE_TRACEROUTE_SO_DEBUG |
| 501 | bool " Enable SO_DEBUG option" | 519 | bool " Enable SO_DEBUG option" |
diff --git a/procps/Config.in b/procps/Config.in index 9458618b3..23f2f7f3d 100644 --- a/procps/Config.in +++ b/procps/Config.in | |||
| @@ -62,7 +62,7 @@ config FEATURE_CPU_USAGE_PERCENTAGE | |||
| 62 | default y | 62 | default y |
| 63 | depends on CONFIG_TOP | 63 | depends on CONFIG_TOP |
| 64 | help | 64 | help |
| 65 | Please submit a patch to add help text for this item. | 65 | Make top display CPU usage. |
| 66 | 66 | ||
| 67 | config CONFIG_UPTIME | 67 | config CONFIG_UPTIME |
| 68 | bool "uptime" | 68 | bool "uptime" |
diff --git a/shell/Config.in b/shell/Config.in index 02d4851ec..57633eb30 100644 --- a/shell/Config.in +++ b/shell/Config.in | |||
| @@ -201,14 +201,15 @@ config CONFIG_FEATURE_SH_FANCY_PROMPT | |||
| 201 | default n | 201 | default n |
| 202 | depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH | 202 | depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH |
| 203 | help | 203 | help |
| 204 | Please submit a patch to add help text for this item. | 204 | Setting this option allows for prompts to use things like \w and |
| 205 | \$ and also using escape codes. | ||
| 205 | 206 | ||
| 206 | config CONFIG_FEATURE_SH_EXTRA_QUIET | 207 | config CONFIG_FEATURE_SH_EXTRA_QUIET |
| 207 | bool "Hide message on interactive shell startup" | 208 | bool "Hide message on interactive shell startup" |
| 208 | default n | 209 | default n |
| 209 | depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH | 210 | depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH |
| 210 | help | 211 | help |
| 211 | Please submit a patch to add help text for this item. | 212 | Remove the busybox introduction when starting a shell. |
| 212 | 213 | ||
| 213 | endmenu | 214 | endmenu |
| 214 | 215 | ||
