diff options
Diffstat (limited to 'shell')
| -rw-r--r-- | shell/Config.in | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/shell/Config.in b/shell/Config.in index 8f2f98e68..cfe081f2c 100644 --- a/shell/Config.in +++ b/shell/Config.in | |||
| @@ -48,14 +48,14 @@ comment "Ash Shell Options" | |||
| 48 | depends on CONFIG_ASH | 48 | depends on CONFIG_ASH |
| 49 | 49 | ||
| 50 | config CONFIG_ASH_JOB_CONTROL | 50 | config CONFIG_ASH_JOB_CONTROL |
| 51 | bool "Enable Job control" | 51 | bool "Job control" |
| 52 | default y | 52 | default y |
| 53 | depends on CONFIG_ASH | 53 | depends on CONFIG_ASH |
| 54 | help | 54 | help |
| 55 | Enable job control in the ash shell. | 55 | Enable job control in the ash shell. |
| 56 | 56 | ||
| 57 | config CONFIG_ASH_READ_NCHARS | 57 | config CONFIG_ASH_READ_NCHARS |
| 58 | bool "Enable 'read -n N' and 'read -s' support" | 58 | bool "'read -n N' and 'read -s' support" |
| 59 | default n | 59 | default n |
| 60 | depends on CONFIG_ASH | 60 | depends on CONFIG_ASH |
| 61 | help | 61 | help |
| @@ -63,7 +63,7 @@ config CONFIG_ASH_READ_NCHARS | |||
| 63 | 'read -s' will read without echoing the user's input. | 63 | 'read -s' will read without echoing the user's input. |
| 64 | 64 | ||
| 65 | config CONFIG_ASH_READ_TIMEOUT | 65 | config CONFIG_ASH_READ_TIMEOUT |
| 66 | bool "Enable 'read -t S' support." | 66 | bool "'read -t S' support." |
| 67 | default n | 67 | default n |
| 68 | depends on CONFIG_ASH | 68 | depends on CONFIG_ASH |
| 69 | help | 69 | help |
| @@ -72,14 +72,14 @@ config CONFIG_ASH_READ_TIMEOUT | |||
| 72 | as a decimal fraction, e.g. 'read -t 2.5 foo'. | 72 | as a decimal fraction, e.g. 'read -t 2.5 foo'. |
| 73 | 73 | ||
| 74 | config CONFIG_ASH_ALIAS | 74 | config CONFIG_ASH_ALIAS |
| 75 | bool "Enable alias support" | 75 | bool "alias support" |
| 76 | default y | 76 | default y |
| 77 | depends on CONFIG_ASH | 77 | depends on CONFIG_ASH |
| 78 | help | 78 | help |
| 79 | Enable alias support in the ash shell. | 79 | Enable alias support in the ash shell. |
| 80 | 80 | ||
| 81 | config CONFIG_ASH_MATH_SUPPORT | 81 | config CONFIG_ASH_MATH_SUPPORT |
| 82 | bool "Enable Posix math support" | 82 | bool "Posix math support" |
| 83 | default y | 83 | default y |
| 84 | depends on CONFIG_ASH | 84 | depends on CONFIG_ASH |
| 85 | help | 85 | help |
| @@ -118,7 +118,7 @@ config CONFIG_ASH_BUILTIN_TEST | |||
| 118 | Enable support for test, built in to ash. | 118 | Enable support for test, built in to ash. |
| 119 | 119 | ||
| 120 | config CONFIG_ASH_CMDCMD | 120 | config CONFIG_ASH_CMDCMD |
| 121 | bool "Enable cmdcmd to override shell builtins" | 121 | bool "'command' command to override shell builtins" |
| 122 | default n | 122 | default n |
| 123 | depends on CONFIG_ASH | 123 | depends on CONFIG_ASH |
| 124 | help | 124 | help |
| @@ -141,7 +141,7 @@ config CONFIG_ASH_OPTIMIZE_FOR_SIZE | |||
| 141 | Compile ash for reduced size at the price of speed. | 141 | Compile ash for reduced size at the price of speed. |
| 142 | 142 | ||
| 143 | config CONFIG_ASH_RANDOM_SUPPORT | 143 | config CONFIG_ASH_RANDOM_SUPPORT |
| 144 | bool "Enable pseudorandom generator and variable $RANDOM" | 144 | bool "Pseudorandom generator and variable $RANDOM" |
| 145 | default n | 145 | default n |
| 146 | depends on CONFIG_ASH | 146 | depends on CONFIG_ASH |
| 147 | help | 147 | help |
| @@ -241,7 +241,7 @@ config CONFIG_FEATURE_SH_STANDALONE_SHELL | |||
| 241 | all. | 241 | all. |
| 242 | 242 | ||
| 243 | config CONFIG_FEATURE_COMMAND_EDITING | 243 | config CONFIG_FEATURE_COMMAND_EDITING |
| 244 | bool "command line editing" | 244 | bool "Command line editing" |
| 245 | default n | 245 | default n |
| 246 | depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH | 246 | depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH |
| 247 | help | 247 | help |
| @@ -256,28 +256,28 @@ config CONFIG_FEATURE_COMMAND_EDITING_VI | |||
| 256 | turned on and off with "set -o vi" and "set +o vi". | 256 | turned on and off with "set -o vi" and "set +o vi". |
| 257 | 257 | ||
| 258 | config CONFIG_FEATURE_COMMAND_HISTORY | 258 | config CONFIG_FEATURE_COMMAND_HISTORY |
| 259 | int "history size" | 259 | int "History size" |
| 260 | default 15 | 260 | default 15 |
| 261 | depends on CONFIG_FEATURE_COMMAND_EDITING | 261 | depends on CONFIG_FEATURE_COMMAND_EDITING |
| 262 | help | 262 | help |
| 263 | Specify command history size in shell. | 263 | Specify command history size in shell. |
| 264 | 264 | ||
| 265 | config CONFIG_FEATURE_COMMAND_SAVEHISTORY | 265 | config CONFIG_FEATURE_COMMAND_SAVEHISTORY |
| 266 | bool "history saving" | 266 | bool "History saving" |
| 267 | default n | 267 | default n |
| 268 | depends on CONFIG_ASH && CONFIG_FEATURE_COMMAND_EDITING | 268 | depends on CONFIG_ASH && CONFIG_FEATURE_COMMAND_EDITING |
| 269 | help | 269 | help |
| 270 | Enable history saving in ash shell. | 270 | Enable history saving in ash shell. |
| 271 | 271 | ||
| 272 | config CONFIG_FEATURE_COMMAND_TAB_COMPLETION | 272 | config CONFIG_FEATURE_COMMAND_TAB_COMPLETION |
| 273 | bool "tab completion" | 273 | bool "Tab completion" |
| 274 | default n | 274 | default n |
| 275 | depends on CONFIG_FEATURE_COMMAND_EDITING | 275 | depends on CONFIG_FEATURE_COMMAND_EDITING |
| 276 | help | 276 | help |
| 277 | Enable tab completion in shell. | 277 | Enable tab completion in shell. |
| 278 | 278 | ||
| 279 | config CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION | 279 | config CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION |
| 280 | bool "username completion" | 280 | bool "Username completion" |
| 281 | default n | 281 | default n |
| 282 | depends on CONFIG_FEATURE_COMMAND_TAB_COMPLETION | 282 | depends on CONFIG_FEATURE_COMMAND_TAB_COMPLETION |
| 283 | help | 283 | help |
