kconfig: remove Enable from boolean prompts
According to Kconfig guidelines, boolean prompts must not start with "Enable...". The following command has been used to automate the changes in this patch: sed -i "s/bool \"[Ee]nables\? \(\w\)/bool \"\U\1/g" **/Kconfig* Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
d510663c26
commit
95fb0ded6b
267 changed files with 920 additions and 920 deletions
|
@ -89,7 +89,7 @@ config SHELL_ARGC_MAX
|
|||
Maximum number of arguments that can build a command.
|
||||
|
||||
config SHELL_TAB
|
||||
bool "Enable the Tab button support in shell"
|
||||
bool "The Tab button support in shell"
|
||||
default y if !SHELL_MINIMAL
|
||||
help
|
||||
Enable using the Tab button in the shell. The button
|
||||
|
@ -97,7 +97,7 @@ config SHELL_TAB
|
|||
This feature has high impact on flash usage.
|
||||
|
||||
config SHELL_TAB_AUTOCOMPLETION
|
||||
bool "Enable commands autocompletion with the Tab button"
|
||||
bool "Commands autocompletion with the Tab button"
|
||||
depends on SHELL_TAB
|
||||
default y if !SHELL_MINIMAL
|
||||
help
|
||||
|
@ -105,14 +105,14 @@ config SHELL_TAB_AUTOCOMPLETION
|
|||
key. This function can be deactivated to save some flash.
|
||||
|
||||
config SHELL_WILDCARD
|
||||
bool "Enable wildcard support in shell"
|
||||
bool "Wildcard support in shell"
|
||||
select FNMATCH
|
||||
default y if !SHELL_MINIMAL
|
||||
help
|
||||
Enables using wildcards: * and ? in the shell.
|
||||
|
||||
config SHELL_ECHO_STATUS
|
||||
bool "Enable echo on shell"
|
||||
bool "Echo on shell"
|
||||
default y
|
||||
help
|
||||
If enabled shell prints back every input byte.
|
||||
|
@ -125,20 +125,20 @@ config SHELL_START_OBSCURED
|
|||
This is used for login prompts.
|
||||
|
||||
config SHELL_VT100_COMMANDS
|
||||
bool "Enable VT100 commands in shell"
|
||||
bool "VT100 commands in shell"
|
||||
default y
|
||||
help
|
||||
Enables VT100 commands in shell (e.g. cursor position, clear screen etc.).
|
||||
|
||||
config SHELL_VT100_COLORS
|
||||
bool "Enable colors in shell"
|
||||
bool "Colors in shell"
|
||||
depends on SHELL_VT100_COMMANDS
|
||||
default y if !SHELL_MINIMAL
|
||||
help
|
||||
If enabled VT100 colors are used in shell (e.g. print errors in red).
|
||||
|
||||
config SHELL_GETOPT
|
||||
bool "Enable threadsafe getopt support in shell"
|
||||
bool "Threadsafe getopt support in shell"
|
||||
select GETOPT
|
||||
help
|
||||
This config creates a separate getopt_state for the shell instance.
|
||||
|
@ -147,7 +147,7 @@ config SHELL_GETOPT
|
|||
get getopt state of the shell thread.
|
||||
|
||||
config SHELL_METAKEYS
|
||||
bool "Enable metakeys"
|
||||
bool "Metakeys"
|
||||
default y if !SHELL_MINIMAL
|
||||
help
|
||||
Enables shell meta keys: Ctrl+a, Ctrl+b, Ctrl+c, Ctrl+d, Ctrl+e,
|
||||
|
@ -155,7 +155,7 @@ config SHELL_METAKEYS
|
|||
Meta keys will not be active when shell echo is set to off.
|
||||
|
||||
config SHELL_HELP
|
||||
bool "Enable help message"
|
||||
bool "Help message"
|
||||
default y if !SHELL_MINIMAL
|
||||
help
|
||||
Enables shell functions for printing formatted help message.
|
||||
|
@ -171,12 +171,12 @@ config SHELL_HELP_OPT_PARSE
|
|||
for a command.
|
||||
|
||||
config SHELL_HELP_ON_WRONG_ARGUMENT_COUNT
|
||||
bool "Enable printing help on wrong argument count"
|
||||
bool "Printing help on wrong argument count"
|
||||
depends on SHELL_HELP
|
||||
default y if !SHELL_MINIMAL
|
||||
|
||||
config SHELL_HISTORY
|
||||
bool "Enable history in shell"
|
||||
bool "History in shell"
|
||||
default y if !SHELL_MINIMAL
|
||||
select RING_BUFFER
|
||||
help
|
||||
|
@ -192,17 +192,17 @@ config SHELL_HISTORY_BUFFER
|
|||
Number of bytes dedicated for storing executed commands.
|
||||
|
||||
config SHELL_STATS
|
||||
bool "Enable shell statistics"
|
||||
bool "Shell statistics"
|
||||
default y if !SHELL_MINIMAL
|
||||
|
||||
config SHELL_CMDS
|
||||
bool "Enable built-in commands"
|
||||
bool "Built-in commands"
|
||||
default y if !SHELL_MINIMAL
|
||||
help
|
||||
Enable built-in commands like 'clear', 'history', etc.
|
||||
|
||||
config SHELL_CMDS_RESIZE
|
||||
bool "Enable resize command"
|
||||
bool "Resize command"
|
||||
depends on SHELL_CMDS
|
||||
depends on SHELL_VT100_COMMANDS
|
||||
default y if !SHELL_MINIMAL
|
||||
|
@ -213,7 +213,7 @@ config SHELL_CMDS_RESIZE
|
|||
The resize command can be turned off to save code memory (~0,5k).
|
||||
|
||||
config SHELL_CMDS_SELECT
|
||||
bool "Enable select command"
|
||||
bool "Select command"
|
||||
depends on SHELL_CMDS
|
||||
help
|
||||
This option enables select command. It can be used to set new root
|
||||
|
@ -226,7 +226,7 @@ config SHELL_CMD_ROOT
|
|||
and when exiting to main command tree with alt+r.
|
||||
|
||||
config SHELL_LOG_BACKEND
|
||||
bool "Enable shell log backend"
|
||||
bool "Shell log backend"
|
||||
depends on LOG && !LOG_MODE_MINIMAL
|
||||
default y if LOG
|
||||
help
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue