remove leading "Enable" from the config option text. not only is it
redundant, but it made the menuconfig shortcut mechanism mostly useless, since so many of the entries started with 'E'.
This commit is contained in:
parent
6ab037872f
commit
7ba12c6957
@ -48,14 +48,14 @@ comment "Ash Shell Options"
|
||||
depends on CONFIG_ASH
|
||||
|
||||
config CONFIG_ASH_JOB_CONTROL
|
||||
bool "Enable Job control"
|
||||
bool "Job control"
|
||||
default y
|
||||
depends on CONFIG_ASH
|
||||
help
|
||||
Enable job control in the ash shell.
|
||||
|
||||
config CONFIG_ASH_READ_NCHARS
|
||||
bool "Enable 'read -n N' and 'read -s' support"
|
||||
bool "'read -n N' and 'read -s' support"
|
||||
default n
|
||||
depends on CONFIG_ASH
|
||||
help
|
||||
@ -63,7 +63,7 @@ config CONFIG_ASH_READ_NCHARS
|
||||
'read -s' will read without echoing the user's input.
|
||||
|
||||
config CONFIG_ASH_READ_TIMEOUT
|
||||
bool "Enable 'read -t S' support."
|
||||
bool "'read -t S' support."
|
||||
default n
|
||||
depends on CONFIG_ASH
|
||||
help
|
||||
@ -72,14 +72,14 @@ config CONFIG_ASH_READ_TIMEOUT
|
||||
as a decimal fraction, e.g. 'read -t 2.5 foo'.
|
||||
|
||||
config CONFIG_ASH_ALIAS
|
||||
bool "Enable alias support"
|
||||
bool "alias support"
|
||||
default y
|
||||
depends on CONFIG_ASH
|
||||
help
|
||||
Enable alias support in the ash shell.
|
||||
|
||||
config CONFIG_ASH_MATH_SUPPORT
|
||||
bool "Enable Posix math support"
|
||||
bool "Posix math support"
|
||||
default y
|
||||
depends on CONFIG_ASH
|
||||
help
|
||||
@ -118,7 +118,7 @@ config CONFIG_ASH_BUILTIN_TEST
|
||||
Enable support for test, built in to ash.
|
||||
|
||||
config CONFIG_ASH_CMDCMD
|
||||
bool "Enable cmdcmd to override shell builtins"
|
||||
bool "'command' command to override shell builtins"
|
||||
default n
|
||||
depends on CONFIG_ASH
|
||||
help
|
||||
@ -141,7 +141,7 @@ config CONFIG_ASH_OPTIMIZE_FOR_SIZE
|
||||
Compile ash for reduced size at the price of speed.
|
||||
|
||||
config CONFIG_ASH_RANDOM_SUPPORT
|
||||
bool "Enable pseudorandom generator and variable $RANDOM"
|
||||
bool "Pseudorandom generator and variable $RANDOM"
|
||||
default n
|
||||
depends on CONFIG_ASH
|
||||
help
|
||||
@ -241,7 +241,7 @@ config CONFIG_FEATURE_SH_STANDALONE_SHELL
|
||||
all.
|
||||
|
||||
config CONFIG_FEATURE_COMMAND_EDITING
|
||||
bool "command line editing"
|
||||
bool "Command line editing"
|
||||
default n
|
||||
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
|
||||
help
|
||||
@ -256,28 +256,28 @@ config CONFIG_FEATURE_COMMAND_EDITING_VI
|
||||
turned on and off with "set -o vi" and "set +o vi".
|
||||
|
||||
config CONFIG_FEATURE_COMMAND_HISTORY
|
||||
int "history size"
|
||||
int "History size"
|
||||
default 15
|
||||
depends on CONFIG_FEATURE_COMMAND_EDITING
|
||||
help
|
||||
Specify command history size in shell.
|
||||
|
||||
config CONFIG_FEATURE_COMMAND_SAVEHISTORY
|
||||
bool "history saving"
|
||||
bool "History saving"
|
||||
default n
|
||||
depends on CONFIG_ASH && CONFIG_FEATURE_COMMAND_EDITING
|
||||
help
|
||||
Enable history saving in ash shell.
|
||||
|
||||
config CONFIG_FEATURE_COMMAND_TAB_COMPLETION
|
||||
bool "tab completion"
|
||||
bool "Tab completion"
|
||||
default n
|
||||
depends on CONFIG_FEATURE_COMMAND_EDITING
|
||||
help
|
||||
Enable tab completion in shell.
|
||||
|
||||
config CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
|
||||
bool "username completion"
|
||||
bool "Username completion"
|
||||
default n
|
||||
depends on CONFIG_FEATURE_COMMAND_TAB_COMPLETION
|
||||
help
|
||||
|
Loading…
Reference in New Issue
Block a user