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:
Gerard Marull-Paretas 2022-03-09 12:05:12 +01:00 committed by Carles Cufí
commit 95fb0ded6b
267 changed files with 920 additions and 920 deletions

View file

@ -69,7 +69,7 @@ endchoice
config TRACING_CTF_TIMESTAMP
bool "Enable CTF internal timestamp"
bool "CTF internal timestamp"
default y
depends on TRACING_CTF
help
@ -134,28 +134,28 @@ choice
default TRACING_BACKEND_UART
config TRACING_BACKEND_UART
bool "Enable UART backend"
bool "UART backend"
depends on UART_CONSOLE
help
Use UART to output tracing data.
config TRACING_BACKEND_USB
bool "Enable USB backend"
bool "USB backend"
depends on USB_DEVICE_STACK
depends on TRACING_ASYNC
help
Use USB to output tracing data.
config TRACING_BACKEND_POSIX
bool "Enable posix architecture (native) backend"
bool "Posix architecture (native) backend"
depends on TRACING_SYNC
depends on ARCH_POSIX
help
Use posix architecture to output tracing data to file system.
config TRACING_BACKEND_RAM
bool "Enable RAM backend"
bool "RAM backend"
help
Use a ram buffer to output tracing data which can
be dumped to a file at runtime with a debugger.
@ -188,7 +188,7 @@ config TRACING_USB_MPS
USB tracing backend max packet size(endpoint MPS).
config TRACING_HANDLE_HOST_CMD
bool "Enable host command handle"
bool "Host command handle"
select UART_INTERRUPT_DRIVEN if TRACING_BACKEND_UART
help
When enabled tracing will handle cmd from host to dynamically
@ -203,7 +203,7 @@ config TRACING_CMD_BUFFER_SIZE
Size of tracing command buffer.
config TRACING_OBJECT_TRACKING
bool "Enable object tracking"
bool "Object tracking"
default n
help
Keep lists to track kernel objects.
@ -211,110 +211,110 @@ config TRACING_OBJECT_TRACKING
menu "Tracing Configuration"
config TRACING_SYSCALL
bool "Enable tracing Syscalls"
bool "Tracing Syscalls"
default y
help
Enable tracing Syscalls.
config TRACING_THREAD
bool "Enable tracing Threads"
bool "Tracing Threads"
default y
help
Enable tracing Threads.
config TRACING_WORK
bool "Enable tracing Work"
bool "Tracing Work"
default y
help
Enable tracing Work and Work queue events
config TRACING_ISR
bool "Enable tracing ISRs"
bool "Tracing ISRs"
default y
help
Enable tracing ISRs. This requires the backend to be
very low-latency.
config TRACING_SEMAPHORE
bool "Enable tracing Semaphores"
bool "Tracing Semaphores"
default y
help
Enable tracing Semaphores.
config TRACING_MUTEX
bool "Enable tracing Mutexes"
bool "Tracing Mutexes"
default y
help
Enable tracing Mutexes.
config TRACING_CONDVAR
bool "Enable tracing Condition Variables"
bool "Tracing Condition Variables"
default y
help
Enable tracing Condition Variables
config TRACING_QUEUE
bool "Enable tracing Queues"
bool "Tracing Queues"
default y
help
Enable tracing Queues.
config TRACING_FIFO
bool "Enable tracing FIFO queues"
bool "Tracing FIFO queues"
default y
help
Enable tracing FIFO queues.
config TRACING_LIFO
bool "Enable tracing LIFO queues"
bool "Tracing LIFO queues"
default y
help
Enable tracing LIFO queues.
config TRACING_STACK
bool "Enable tracing Memory Stacks"
bool "Tracing Memory Stacks"
default y
help
Enable tracing Memory Stacks.
config TRACING_MESSAGE_QUEUE
bool "Enable tracing Message Queues"
bool "Tracing Message Queues"
default y
help
Enable tracing Message Queues.
config TRACING_MAILBOX
bool "Enable tracing Mailboxes"
bool "Tracing Mailboxes"
default y
help
Enable tracing Mailboxes.
config TRACING_PIPE
bool "Enable tracing Pipes"
bool "Tracing Pipes"
default y
help
Enable tracing Pipes.
config TRACING_HEAP
bool "Enable tracing Memory Heaps"
bool "Tracing Memory Heaps"
default y
help
Enable tracing Memory Heaps.
config TRACING_MEMORY_SLAB
bool "Enable tracing Memory Slabs"
bool "Tracing Memory Slabs"
default y
help
Enable tracing Memory Slabs.
config TRACING_TIMER
bool "Enable tracing Timers"
bool "Tracing Timers"
default y
help
Enable tracing Timers.
config TRACING_EVENT
bool "Enable tracing Events"
bool "Tracing Events"
default y
help
Enable tracing Events.