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
|
depends on CONFIG_ASH
|
||||||
|
|
||||||
config CONFIG_ASH_JOB_CONTROL
|
config CONFIG_ASH_JOB_CONTROL
|
||||||
bool "Enable Job control"
|
bool "Job control"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_ASH
|
depends on CONFIG_ASH
|
||||||
help
|
help
|
||||||
Enable job control in the ash shell.
|
Enable job control in the ash shell.
|
||||||
|
|
||||||
config CONFIG_ASH_READ_NCHARS
|
config CONFIG_ASH_READ_NCHARS
|
||||||
bool "Enable 'read -n N' and 'read -s' support"
|
bool "'read -n N' and 'read -s' support"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_ASH
|
depends on CONFIG_ASH
|
||||||
help
|
help
|
||||||
@ -63,7 +63,7 @@ config CONFIG_ASH_READ_NCHARS
|
|||||||
'read -s' will read without echoing the user's input.
|
'read -s' will read without echoing the user's input.
|
||||||
|
|
||||||
config CONFIG_ASH_READ_TIMEOUT
|
config CONFIG_ASH_READ_TIMEOUT
|
||||||
bool "Enable 'read -t S' support."
|
bool "'read -t S' support."
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_ASH
|
depends on CONFIG_ASH
|
||||||
help
|
help
|
||||||
@ -72,14 +72,14 @@ config CONFIG_ASH_READ_TIMEOUT
|
|||||||
as a decimal fraction, e.g. 'read -t 2.5 foo'.
|
as a decimal fraction, e.g. 'read -t 2.5 foo'.
|
||||||
|
|
||||||
config CONFIG_ASH_ALIAS
|
config CONFIG_ASH_ALIAS
|
||||||
bool "Enable alias support"
|
bool "alias support"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_ASH
|
depends on CONFIG_ASH
|
||||||
help
|
help
|
||||||
Enable alias support in the ash shell.
|
Enable alias support in the ash shell.
|
||||||
|
|
||||||
config CONFIG_ASH_MATH_SUPPORT
|
config CONFIG_ASH_MATH_SUPPORT
|
||||||
bool "Enable Posix math support"
|
bool "Posix math support"
|
||||||
default y
|
default y
|
||||||
depends on CONFIG_ASH
|
depends on CONFIG_ASH
|
||||||
help
|
help
|
||||||
@ -118,7 +118,7 @@ config CONFIG_ASH_BUILTIN_TEST
|
|||||||
Enable support for test, built in to ash.
|
Enable support for test, built in to ash.
|
||||||
|
|
||||||
config CONFIG_ASH_CMDCMD
|
config CONFIG_ASH_CMDCMD
|
||||||
bool "Enable cmdcmd to override shell builtins"
|
bool "'command' command to override shell builtins"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_ASH
|
depends on CONFIG_ASH
|
||||||
help
|
help
|
||||||
@ -141,7 +141,7 @@ config CONFIG_ASH_OPTIMIZE_FOR_SIZE
|
|||||||
Compile ash for reduced size at the price of speed.
|
Compile ash for reduced size at the price of speed.
|
||||||
|
|
||||||
config CONFIG_ASH_RANDOM_SUPPORT
|
config CONFIG_ASH_RANDOM_SUPPORT
|
||||||
bool "Enable pseudorandom generator and variable $RANDOM"
|
bool "Pseudorandom generator and variable $RANDOM"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_ASH
|
depends on CONFIG_ASH
|
||||||
help
|
help
|
||||||
@ -241,7 +241,7 @@ config CONFIG_FEATURE_SH_STANDALONE_SHELL
|
|||||||
all.
|
all.
|
||||||
|
|
||||||
config CONFIG_FEATURE_COMMAND_EDITING
|
config CONFIG_FEATURE_COMMAND_EDITING
|
||||||
bool "command line editing"
|
bool "Command line editing"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
|
depends on CONFIG_MSH || CONFIG_LASH || CONFIG_HUSH || CONFIG_ASH
|
||||||
help
|
help
|
||||||
@ -256,28 +256,28 @@ config CONFIG_FEATURE_COMMAND_EDITING_VI
|
|||||||
turned on and off with "set -o vi" and "set +o vi".
|
turned on and off with "set -o vi" and "set +o vi".
|
||||||
|
|
||||||
config CONFIG_FEATURE_COMMAND_HISTORY
|
config CONFIG_FEATURE_COMMAND_HISTORY
|
||||||
int "history size"
|
int "History size"
|
||||||
default 15
|
default 15
|
||||||
depends on CONFIG_FEATURE_COMMAND_EDITING
|
depends on CONFIG_FEATURE_COMMAND_EDITING
|
||||||
help
|
help
|
||||||
Specify command history size in shell.
|
Specify command history size in shell.
|
||||||
|
|
||||||
config CONFIG_FEATURE_COMMAND_SAVEHISTORY
|
config CONFIG_FEATURE_COMMAND_SAVEHISTORY
|
||||||
bool "history saving"
|
bool "History saving"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_ASH && CONFIG_FEATURE_COMMAND_EDITING
|
depends on CONFIG_ASH && CONFIG_FEATURE_COMMAND_EDITING
|
||||||
help
|
help
|
||||||
Enable history saving in ash shell.
|
Enable history saving in ash shell.
|
||||||
|
|
||||||
config CONFIG_FEATURE_COMMAND_TAB_COMPLETION
|
config CONFIG_FEATURE_COMMAND_TAB_COMPLETION
|
||||||
bool "tab completion"
|
bool "Tab completion"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_FEATURE_COMMAND_EDITING
|
depends on CONFIG_FEATURE_COMMAND_EDITING
|
||||||
help
|
help
|
||||||
Enable tab completion in shell.
|
Enable tab completion in shell.
|
||||||
|
|
||||||
config CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
|
config CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION
|
||||||
bool "username completion"
|
bool "Username completion"
|
||||||
default n
|
default n
|
||||||
depends on CONFIG_FEATURE_COMMAND_TAB_COMPLETION
|
depends on CONFIG_FEATURE_COMMAND_TAB_COMPLETION
|
||||||
help
|
help
|
||||||
|
Loading…
Reference in New Issue
Block a user