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í
parent d510663c26
commit 95fb0ded6b
267 changed files with 920 additions and 920 deletions

View file

@ -221,7 +221,7 @@ config SRAM_OFFSET
menu "Linker Sections"
config LINKER_USE_BOOT_SECTION
bool "Enable Usage of Boot Linker Section"
bool "Usage of Boot Linker Section"
help
If enabled, the symbols which are needed for the boot process
will be put into another linker section reserved for these
@ -231,7 +231,7 @@ config LINKER_USE_BOOT_SECTION
board or custom linker script.
config LINKER_USE_PINNED_SECTION
bool "Enable Usage of Pinned Linker Section"
bool "Usage of Pinned Linker Section"
help
If enabled, the symbols which need to be pinned in memory
will be put into another linker section reserved for pinned
@ -309,7 +309,7 @@ config NO_OPTIMIZATIONS
endchoice
config COMPILER_COLOR_DIAGNOSTICS
bool "Enable colored diagnostics"
bool "Colored diagnostics"
default y
help
Compiler diagnostic messages are colorized.
@ -349,7 +349,7 @@ config NO_RUNTIME_CHECKS
Do not do any runtime checks or asserts when using the CHECK macro.
config RUNTIME_ERROR_CHECKS
bool "Enable runtime error checks"
bool "Runtime error checks"
help
Always perform runtime checks covered with the CHECK macro. This
option is the default and the only option used during testing.

View file

@ -378,7 +378,7 @@ config NOCACHE_MEMORY
menu "Interrupt Configuration"
config DYNAMIC_INTERRUPTS
bool "Enable installation of IRQs at runtime"
bool "Installation of IRQs at runtime"
help
Enable installation of interrupts at runtime, which will move some
interrupt-related data structures to RAM instead of ROM, and
@ -436,7 +436,7 @@ config GEN_IRQ_START_VECTOR
left alone.
config IRQ_OFFLOAD
bool "Enable IRQ offload"
bool "IRQ offload"
depends on TEST
help
Enable irq_offload() API which allows functions to be synchronously
@ -618,7 +618,7 @@ config ARCH_MAPS_ALL_RAM
as reserved) and Z_PAGE_FRAME_MAPPED will not be set.
menuconfig MPU
bool "Enable MPU features"
bool "MPU features"
depends on CPU_HAS_MPU
help
This option, when enabled, indicates to the core kernel that an MPU
@ -699,7 +699,7 @@ config SRAM_REGION_PERMISSIONS
menu "Floating Point Options"
config FPU
bool "Enable floating point unit (FPU)"
bool "Floating point unit (FPU)"
depends on CPU_HAS_FPU
help
This option enables the hardware Floating Point Unit (FPU), in order to
@ -740,7 +740,7 @@ endmenu
menu "Cache Options"
config CACHE_MANAGEMENT
bool "Enable cache management features"
bool "Cache management features"
help
This links in the cache management functions (for d-cache and i-cache
where possible).

View file

@ -168,7 +168,7 @@ config ARC_FIRQ
from the performance point of view.
config ARC_FIRQ_STACK
bool "Enable separate firq stack"
bool "Separate firq stack"
depends on ARC_FIRQ && RGF_NUM_BANKS > 1
help
Use separate stack for FIRQ handing. When the fast irq is also a direct
@ -220,7 +220,7 @@ config ARC_STACK_PROTECTION
prioritized over the MPU-based stack guard.
config ARC_USE_UNALIGNED_MEM_ACCESS
bool "Enable unaligned access in HW"
bool "Unaligned access in HW"
default y if CPU_ARCHS
depends on (CPU_ARCEM && !ARC_HAS_SECURE) || CPU_ARCHS
help
@ -325,7 +325,7 @@ menu "ARC MPU Options"
depends on CPU_HAS_MPU
config ARC_MPU_ENABLE
bool "Enable MPU"
bool "MPU"
select ARC_MPU
help
Enable MPU

View file

@ -143,7 +143,7 @@ config RUNTIME_NMI
needed, enable this option and attach it via _NmiHandlerSet().
config PLATFORM_SPECIFIC_INIT
bool "Enable platform (SOC) specific startup hook"
bool "Platform (SOC) specific startup hook"
help
The platform specific initialization code (z_arm_platform_init) is
executed at the beginning of the startup code (__start).

View file

@ -280,7 +280,7 @@ config GEN_ISR_TABLES
default y
config ZERO_LATENCY_IRQS
bool "Enable zero-latency interrupts"
bool "Zero-latency interrupts"
depends on CPU_CORTEX_M_HAS_BASEPRI
help
The kernel may reserve some of the highest interrupts priorities in
@ -296,7 +296,7 @@ config ZERO_LATENCY_IRQS
kernel functionality.
config DYNAMIC_DIRECT_INTERRUPTS
bool "Enable support for dynamic direct interrupts"
bool "Support for dynamic direct interrupts"
depends on DYNAMIC_INTERRUPTS
help
Direct interrupts are designed for performance-critical interrupt
@ -307,7 +307,7 @@ config DYNAMIC_DIRECT_INTERRUPTS
kernel.
config SW_VECTOR_RELAY
bool "Enable Software Vector Relay"
bool "Software Vector Relay"
help
When building a bootloader firmware this option adds a
vector table relay handler and a vector relay table, to
@ -316,7 +316,7 @@ config SW_VECTOR_RELAY
with no hardware vector table relocation mechanisms (e.g. VTOR).
config SW_VECTOR_RELAY_CLIENT
bool "Enable Software Vector Relay (client)"
bool "Software Vector Relay (client)"
default y if BOOTLOADER_MCUBOOT && !CPU_CORTEX_M0_HAS_VECTOR_TABLE_REMAP
depends on !CPU_CORTEX_M_HAS_VTOR
help
@ -326,7 +326,7 @@ config SW_VECTOR_RELAY_CLIENT
initialization.
config CORTEX_M_DWT
bool "Enable and use the DWT"
bool "And use the DWT"
depends on CPU_CORTEX_M_HAS_DWT
default y if TIMING_FUNCTIONS
help
@ -345,7 +345,7 @@ endmenu
# Trace Unit and the Debug Monitor Exception, or the Memory Protection Unit.
choice NULL_POINTER_EXCEPTION_DETECTION
bool "Enable and use null-pointer exception"
bool "And use null-pointer exception"
# Disable this until https://github.com/zephyrproject-rtos/zephyr/issues/32984 is fixed
# default NULL_POINTER_EXCEPTION_DETECTION_DWT if TEST_ARM_CORTEX_M && !ARM_NONSECURE_FIRMWARE && CPU_CORTEX_M_HAS_DWT
default NULL_POINTER_EXCEPTION_DETECTION_MPU if TEST_ARM_CORTEX_M && !ARM_NONSECURE_FIRMWARE && ARM_MPU && !CPU_CORTEX_M_HAS_DWT

View file

@ -14,14 +14,14 @@ config COMPRESSED_ISA
default y if 64BIT
config FLOAT_HARD
bool "Enable hard-float calling convention"
bool "Hard-float calling convention"
default y
depends on FPU
help
This option enables the hard-float calling convention.
config RISCV_GP
bool "Enable RISC-V global pointer relative addressing"
bool "RISC-V global pointer relative addressing"
default n
help
Use global pointer relative addressing for small globals declared
@ -50,7 +50,7 @@ config INCLUDE_RESET_VECTOR
prepares for running C code.
config RISCV_SOC_CONTEXT_SAVE
bool "Enable SOC-based context saving in IRQ handlers"
bool "SOC-based context saving in IRQ handlers"
select RISCV_SOC_OFFSETS
help
Enable low-level SOC-specific context management, for SOCs
@ -85,7 +85,7 @@ config RISCV_SOC_CONTEXT_SAVE
pointer address is in a0, and ra contains the return address.
config RISCV_SOC_OFFSETS
bool "Enable SOC-based offsets"
bool "SOC-based offsets"
help
Enabling this option requires that the SoC provide a soc_offsets.h
header which defines the following macros:
@ -97,7 +97,7 @@ config RISCV_SOC_OFFSETS
See gen_offset.h for more details.
config RISCV_SOC_INTERRUPT_INIT
bool "Enable SOC-based interrupt initialization"
bool "SOC-based interrupt initialization"
help
Enable SOC-based interrupt initialization
(call soc_interrupt_init, within _IntLibInit when enabled)

View file

@ -11,7 +11,7 @@ config PMP_SLOT
than the Hardware allow you.
config PMP_POWER_OF_TWO_ALIGNMENT
bool "Enable power of two alignment"
bool "Power of two alignment"
default n
select MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT
select GEN_PRIV_STACKS

View file

@ -101,56 +101,56 @@ config X86_CPU_HAS_SSE4A
if FPU || X86_64
config X86_MMX
bool "Enable MMX Support"
bool "MMX Support"
depends on X86_CPU_HAS_MMX
help
This option enables MMX support, and the use of MMX registers
by threads.
config X86_SSE
bool "Enable SSE Support"
bool "SSE Support"
depends on X86_CPU_HAS_SSE
help
This option enables SSE support, and the use of SSE registers
by threads.
config X86_SSE2
bool "Enable SSE2 Support"
bool "SSE2 Support"
depends on X86_CPU_HAS_SSE2
select X86_SSE
help
This option enables SSE2 support.
config X86_SSE3
bool "Enable SSE3 Support"
bool "SSE3 Support"
depends on X86_CPU_HAS_SSE3
select X86_SSE
help
This option enables SSE3 support.
config X86_SSSE3
bool "Enable SSSE3 (Supplemental SSE3) Support"
bool "SSSE3 (Supplemental SSE3) Support"
depends on X86_CPU_HAS_SSSE3
select X86_SSE
help
This option enables Supplemental SSE3 support.
config X86_SSE41
bool "Enable SSE4.1 Support"
bool "SSE4.1 Support"
depends on X86_CPU_HAS_SSE41
select X86_SSE
help
This option enables SSE4.1 support.
config X86_SSE42
bool "Enable SSE4.2 Support"
bool "SSE4.2 Support"
depends on X86_CPU_HAS_SSE42
select X86_SSE
help
This option enables SSE4.2 support.
config X86_SSE4A
bool "Enable SSE4A Support"
bool "SSE4A Support"
depends on X86_CPU_HAS_SSE4A
select X86_SSE
help
@ -336,7 +336,7 @@ config X86_VERY_EARLY_CONSOLE
tree. This mini-driver assumes I/O to the UART is done via ports.
config X86_MMU
bool "Enable Memory Management Unit"
bool "Memory Management Unit"
select MMU
help
This options enables the memory management unit present in x86
@ -450,7 +450,7 @@ config DISABLE_SSBD
require this feature.
config ENABLE_EXTENDED_IBRS
bool "Enable Extended IBRS"
bool "Extended IBRS"
depends on USERSPACE
default y if !X86_NO_SPECTRE_V2
help
@ -469,7 +469,7 @@ config X86_BOUNDS_CHECK_BYPASS_MITIGATION
to be immune to it.
config X86_KPTI
bool "Enable kernel page table isolation"
bool "Kernel page table isolation"
default y
depends on USERSPACE
depends on !X86_NO_MELTDOWN

View file

@ -6,7 +6,7 @@
if !X86_64
config NESTED_INTERRUPTS
bool "Enable nested interrupts"
bool "Nested interrupts"
default y
help
This option enables support for nested interrupts.

View file

@ -44,7 +44,7 @@ config XTENSA_USE_CORE_CRT1
to false.
config XTENSA_ENABLE_BACKTRACE
bool "Enable backtrace on panic exception"
bool "Backtrace on panic exception"
default y
depends on SOC_ESP32
help
@ -56,14 +56,14 @@ config XTENSA_CPU_IDLE_SPIN
Use a spin loop instead of WAITI for the CPU idle state.
config XTENSA_WAITI_BUG
bool "Enable workaround sequence for WAITI bug on LX6"
bool "Workaround sequence for WAITI bug on LX6"
help
SOF traditionally contains this workaround on its ADSP
platforms which prefixes a WAITI entry with 128 NOP
instructions followed by an ISYNC and EXTW.
config XTENSA_SMALL_VECTOR_TABLE_ENTRY
bool "Enable workaround for small vector table entries"
bool "Workaround for small vector table entries"
help
This option enables a small indirection to bypass the size
constraint of the vector table entry and moved the default

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_ADAFRUIT_FEATHER_NRF52840

View file

@ -46,17 +46,17 @@ endif # RPMSG_SERVICE_DUAL_IPM_SUPPORT
if BOARD_BL5340_DVK_CPUAPP || BOARD_BL5340_DVK_CPUAPP_NS
config BOARD_ENABLE_DCDC_APP
bool "Enable Application MCU DCDC converter"
bool "Application MCU DCDC converter"
select SOC_DCDC_NRF53X_APP
default y
config BOARD_ENABLE_DCDC_NET
bool "Enable Network MCU DCDC converter"
bool "Network MCU DCDC converter"
select SOC_DCDC_NRF53X_NET
default y
config BOARD_ENABLE_DCDC_HV
bool "Enable High Voltage DCDC converter"
bool "High Voltage DCDC converter"
select SOC_DCDC_NRF53X_HV
default y
@ -71,7 +71,7 @@ config BT_HCI_VS
default y if BT
config BOARD_ENABLE_CPUNET
bool "Enable nRF53 Network MCU"
bool "NRF53 Network MCU"
help
This option enables releasing the Network 'force off' signal, which
as a consequence will power up the Network MCU during system boot.

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_BL652_DVK

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_BL653_DVK

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_BL654_DVK

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_BL654_SENSOR_BOARD

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_BL654_USB

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_BLUECLOVER_PLT_DEMO_V2_NRF52832

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_BT510

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_BT610

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_CONTEXTELEC_ABC

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_DECAWAVE_DWM1001_DEV

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_DEGU_EVK

View file

@ -4,5 +4,5 @@
# SPDX-License-Identifier: Apache-2.0
config BATTERY_SENSE
bool "Enable the battery sense circuit"
bool "The battery sense circuit"
depends on BOARD_HEXIWEAR_K64

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF21540DK_NRF52840

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF52832_MDK

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF52833DK_NRF52820

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF52833DK_NRF52833

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF52840_BLIP

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF52840_MDK

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF52840_PAPYR

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF52840DK_NRF52811

View file

@ -6,12 +6,12 @@
if BOARD_NRF52840DK_NRF52840
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
config BOARD_ENABLE_DCDC_HV
bool "Enable High Voltage DCDC converter"
bool "High Voltage DCDC converter"
select SOC_DCDC_NRF52X_HV
default y

View file

@ -6,12 +6,12 @@
if BOARD_NRF52840DONGLE_NRF52840
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
config BOARD_ENABLE_DCDC_HV
bool "Enable High Voltage DCDC converter"
bool "High Voltage DCDC converter"
select SOC_DCDC_NRF52X_HV
default y

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF52_ADAFRUIT_FEATHER

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF52DK_NRF52805

View file

@ -6,7 +6,7 @@
if BOARD_NRF52DK_NRF52810
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_NRF52DK_NRF52832

View file

@ -45,17 +45,17 @@ endif # RPMSG_SERVICE_DUAL_IPM_SUPPORT
if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_NRF5340DK_NRF5340_CPUAPP_NS
config BOARD_ENABLE_DCDC_APP
bool "Enable Application MCU DCDC converter"
bool "Application MCU DCDC converter"
select SOC_DCDC_NRF53X_APP
default y
config BOARD_ENABLE_DCDC_NET
bool "Enable Network MCU DCDC converter"
bool "Network MCU DCDC converter"
select SOC_DCDC_NRF53X_NET
default y
config BOARD_ENABLE_DCDC_HV
bool "Enable High Voltage DCDC converter"
bool "High Voltage DCDC converter"
select SOC_DCDC_NRF53X_HV
default y
@ -70,7 +70,7 @@ config BT_HCI_VS
default y if BT
config BOARD_ENABLE_CPUNET
bool "Enable nRF53 Network MCU"
bool "NRF53 Network MCU"
help
This option enables releasing the Network 'force off' signal, which
as a consequence will power up the Network MCU during system boot.

View file

@ -6,7 +6,7 @@
if BOARD_NRF9160DK_NRF52840
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_PARTICLE_ARGON

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_PARTICLE_BORON

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_PARTICLE_XENON

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_PINNACLE_100_DVK

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_REEL_BOARD || BOARD_REEL_BOARD_V2

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_RUUVI_RUUVITAG

View file

@ -51,22 +51,22 @@ endif # RPMSG_SERVICE_DUAL_IPM_SUPPORT
if BOARD_THINGY53_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP_NS
config BOARD_ENABLE_DCDC_APP
bool "Enable Application MCU DCDC converter"
bool "Application MCU DCDC converter"
select SOC_DCDC_NRF53X_APP
default y
config BOARD_ENABLE_DCDC_NET
bool "Enable Network MCU DCDC converter"
bool "Network MCU DCDC converter"
select SOC_DCDC_NRF53X_NET
default y
config BOARD_ENABLE_DCDC_HV
bool "Enable High Voltage DCDC converter"
bool "High Voltage DCDC converter"
select SOC_DCDC_NRF53X_HV
default y
config BOARD_ENABLE_CPUNET
bool "Enable nRF53 Network MCU"
bool "NRF53 Network MCU"
help
This option enables releasing the Network 'force off' signal, which
as a consequence will power up the Network MCU during system boot.

View file

@ -6,7 +6,7 @@
if BOARD_TWR_KE18F
config BOARD_TWR_KE18F_FLEXIO_CLKOUT
bool "Enable CLKOUT signal on FlexIO header"
bool "CLKOUT signal on FlexIO header"
help
Enable the CLKOUT signal on FlexIO header pin 7 (PTE10).

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_UBX_BMD300EVAL_NRF52832

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_UBX_BMD330EVAL_NRF52810

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_UBX_BMD340EVAL_NRF52840

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_UBX_BMD360EVAL_NRF52811

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_UBX_BMD380EVAL_NRF52840

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_UBX_EVKANNAB1_NRF52832

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_UBX_EVKNINAB1_NRF52832

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_UBX_EVKNINAB3_NRF52840

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC
bool "Enable DCDC mode"
bool "DCDC mode"
select SOC_DCDC_NRF52X
default y
depends on BOARD_UBX_EVKNINAB4_NRF52833

View file

@ -16,7 +16,7 @@ menuconfig ADC
if ADC
config ADC_SHELL
bool "Enable ADC Shell"
bool "ADC Shell"
default y
depends on SHELL
help
@ -29,7 +29,7 @@ config ADC_CONFIGURABLE_INPUTS
bool
config ADC_ASYNC
bool "Enable asynchronous call support"
bool "Asynchronous call support"
select POLL
help
This option enables the asynchronous API calls.

View file

@ -36,7 +36,7 @@ config ADC_LMP90XXX_CRC
the data read from the LMP90xxx.
config ADC_LMP90XXX_GPIO
bool "Enable GPIO support"
bool "GPIO support"
depends on GPIO
select GPIO_LMP90XXX
help

View file

@ -60,7 +60,7 @@ config ADC_MCUX_ADC16_VREF_ALTERNATE
endchoice
config ADC_MCUX_ADC16_ENABLE_EDMA
bool "Enable EDMA for adc driver"
bool "EDMA for adc driver"
depends on HAS_MCUX_ADC16 && HAS_MCUX_EDMA
help
Enable the MCUX ADC16 driver.

View file

@ -94,13 +94,13 @@ config BT_SPI_INIT_PRIORITY
default 75
config BT_BLUENRG_ACI
bool "Enable ACI message with with BlueNRG-based devices"
bool "ACI message with with BlueNRG-based devices"
help
Enable support for devices compatible with the BlueNRG Bluetooth
Stack. Current driver supports: ST BLUENRG-MS.
config BT_SPI_BLUENRG
bool "Enable compatibility with BlueNRG-based devices"
bool "Compatibility with BlueNRG-based devices"
help
Enable support for devices compatible with the BlueNRG Bluetooth
Stack. Current driver supports: ST BLUENRG-MS.

View file

@ -24,7 +24,7 @@ config CAN_INIT_PRIORITY
CAN driver device initialization priority.
config CAN_SHELL
bool "Enable CAN Shell"
bool "CAN Shell"
default y
depends on SHELL
select POLL
@ -32,7 +32,7 @@ config CAN_SHELL
Enable CAN Shell for testing.
config CAN_STATS
bool "Enable CAN controller device statistics"
bool "CAN controller device statistics"
depends on STATS
help
Enable CAN controller device statistics.
@ -76,7 +76,7 @@ config CAN_INIT_PRIORITY
so that it can start before the networking sub-system.
config CAN_RX_TIMESTAMP
bool "Enable receiving timestamps"
bool "Receiving timestamps"
depends on CAN_HAS_RX_TIMESTAMP
help
This option enables a timestamp value of the CAN free running timer.
@ -84,7 +84,7 @@ config CAN_RX_TIMESTAMP
is initialized.
config CAN_AUTO_BUS_OFF_RECOVERY
bool "Enable automatic recovery from bus-off"
bool "Automatic recovery from bus-off"
default y
help
This option enables the automatic bus-off recovery according to

View file

@ -16,7 +16,7 @@ config CAN_MCAN
if CAN_MCAN
config CAN_DELAY_COMP
bool "Enable transceiver delay compensation"
bool "Transceiver delay compensation"
default y
help
Enable the automatic transceiver delay compensation.

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config CAN_NET
bool "Enable 6loCAN network interface [EXPERIMENTAL]"
bool "6loCAN network interface [EXPERIMENTAL]"
select EXPERIMENTAL
help
Enable IPv6 Networking over can (6loCAN)

View file

@ -21,7 +21,7 @@ config ARM_CLOCK_CONTROL_DEV_NAME
Configure Clock Config Device name
config CLOCK_CONTROL_BEETLE_ENABLE_PLL
bool "Enable PLL on Beetle"
bool "PLL on Beetle"
depends on SOC_SERIES_BEETLE
help
Enable PLL on Beetle.

View file

@ -13,12 +13,12 @@ menuconfig CLOCK_CONTROL_LPC11U6X
if CLOCK_CONTROL_LPC11U6X
config CLOCK_CONTROL_LPC11U6X_ENABLE_SRAM1
bool "Enable SRAM1"
bool "SRAM1"
help
Enable SRAM1
config CLOCK_CONTROL_LPC11U6X_ENABLE_USB_RAM
bool "Enable USB RAM"
bool "USB RAM"
help
Enable USB RAM

View file

@ -55,7 +55,7 @@ config CLOCK_CONTROL_NRF_K32SRC_EXT_FULL_SWING
endchoice
config CLOCK_CONTROL_NRF_K32SRC_RC_CALIBRATION
bool "Enable LF clock calibration"
bool "LF clock calibration"
depends on !SOC_SERIES_NRF91X && CLOCK_CONTROL_NRF_K32SRC_RC
default y
help

View file

@ -25,7 +25,7 @@ config CONSOLE_HAS_DRIVER
that some kind of console exists.
config CONSOLE_HANDLER
bool "Enable console input handler"
bool "Console input handler"
depends on UART_CONSOLE && SERIAL_SUPPORT_INTERRUPT
select UART_INTERRUPT_DRIVEN
help
@ -58,7 +58,7 @@ config UART_CONSOLE_DEBUG_SERVER_HOOKS
code handle them if they are of no special significance to it.
config UART_CONSOLE_MCUMGR
bool "Enable UART console mcumgr passthrough"
bool "UART console mcumgr passthrough"
depends on UART_CONSOLE
help
Enables the UART console to receive mcumgr frames for image upgrade
@ -67,7 +67,7 @@ config UART_CONSOLE_MCUMGR
(e.g., the shell). If unset, incoming mcumgr frames are dropped.
config UART_CONSOLE_INPUT_EXPIRED
bool "Enable support for UART console input expired mechanism"
bool "Support for UART console input expired mechanism"
default y
depends on UART_CONSOLE && PM
help
@ -190,7 +190,7 @@ config IPM_CONSOLE_LINE_BUF_LEN
where characters are stored before sending the whole line.
config UART_PIPE
bool "Enable pipe UART driver"
bool "Pipe UART driver"
select UART_INTERRUPT_DRIVEN
help
Enable pipe UART driver. This driver allows application to communicate
@ -211,7 +211,7 @@ config UART_PIPE_ON_DEV_NAME
for pipe UART.
config UART_MCUMGR
bool "Enable mcumgr UART driver"
bool "Mcumgr UART driver"
select UART_INTERRUPT_DRIVEN
help
Enable the mcumgr UART driver. This driver allows the application to
@ -307,7 +307,7 @@ source "subsys/logging/Kconfig.template.log_config"
source "drivers/console/Kconfig.gsm_mux"
config UART_MUX
bool "Enable UART muxing (GSM 07.10) support [EXPERIMENTAL]"
bool "UART muxing (GSM 07.10) support [EXPERIMENTAL]"
depends on SERIAL_SUPPORT_INTERRUPT && GSM_MUX
select UART_INTERRUPT_DRIVEN
select EXPERIMENTAL

View file

@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0
config GSM_MUX
bool "Enable GSM 07.10 muxing protocol"
bool "GSM 07.10 muxing protocol"
help
Enable GSM 07.10 muxing protocol defined in
https://www.etsi.org/deliver/etsi_ts/101300_101399/101369/07.01.00_60/ts_101369v070100p.pdf

View file

@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0
config COUNTER_NATIVE_POSIX
bool "Enable counter on COUNTER_0"
bool "Counter on COUNTER_0"
default y
depends on BOARD_NATIVE_POSIX

View file

@ -8,7 +8,7 @@ config COUNTER_NRF_RTC
bool
config COUNTER_TIMER0
bool "Enable Counter on TIMER0"
bool "Counter on TIMER0"
depends on HAS_HW_NRF_TIMER0
depends on !NRF_HW_TIMER0_RESERVED
select COUNTER_NRF_TIMER
@ -19,7 +19,7 @@ config COUNTER_TIMER0_ZLI
depends on ZERO_LATENCY_IRQS
config COUNTER_TIMER1
bool "Enable Counter on TIMER1"
bool "Counter on TIMER1"
depends on HAS_HW_NRF_TIMER1
depends on !NRF_HW_TIMER1_RESERVED
select COUNTER_NRF_TIMER
@ -30,7 +30,7 @@ config COUNTER_TIMER1_ZLI
depends on ZERO_LATENCY_IRQS
config COUNTER_TIMER2
bool "Enable Counter on TIMER2"
bool "Counter on TIMER2"
depends on HAS_HW_NRF_TIMER2
depends on !NRF_HW_TIMER2_RESERVED
select COUNTER_NRF_TIMER
@ -41,7 +41,7 @@ config COUNTER_TIMER2_ZLI
depends on ZERO_LATENCY_IRQS
config COUNTER_TIMER3
bool "Enable Counter on TIMER3"
bool "Counter on TIMER3"
depends on HAS_HW_NRF_TIMER3
depends on !NRF_HW_TIMER3_RESERVED
select COUNTER_NRF_TIMER
@ -52,7 +52,7 @@ config COUNTER_TIMER3_ZLI
depends on ZERO_LATENCY_IRQS
config COUNTER_TIMER4
bool "Enable Counter on TIMER4"
bool "Counter on TIMER4"
depends on HAS_HW_NRF_TIMER4
depends on !NRF_HW_TIMER4_RESERVED
select COUNTER_NRF_TIMER
@ -63,7 +63,7 @@ config COUNTER_TIMER4_ZLI
depends on ZERO_LATENCY_IRQS
config COUNTER_RTC0
bool "Enable Counter on RTC0"
bool "Counter on RTC0"
depends on HAS_HW_NRF_RTC0
depends on !NRF_HW_RTC0_RESERVED
select COUNTER_NRF_RTC
@ -74,7 +74,7 @@ config COUNTER_RTC0_ZLI
depends on ZERO_LATENCY_IRQS
config COUNTER_RTC1
bool "Enable Counter on RTC1"
bool "Counter on RTC1"
depends on HAS_HW_NRF_RTC1
depends on !NRF_HW_RTC1_RESERVED
select COUNTER_NRF_RTC
@ -85,7 +85,7 @@ config COUNTER_RTC1_ZLI
depends on ZERO_LATENCY_IRQS
config COUNTER_RTC2
bool "Enable Counter on RTC2"
bool "Counter on RTC2"
depends on HAS_HW_NRF_RTC2
depends on !NRF_HW_RTC2_RESERVED
select COUNTER_NRF_RTC

View file

@ -22,7 +22,7 @@ module-str = CRYPTO
source "subsys/logging/Kconfig.template.log_config"
config CRYPTO_TINYCRYPT_SHIM
bool "Enable TinyCrypt shim driver [EXPERIMENTAL]"
bool "TinyCrypt shim driver [EXPERIMENTAL]"
select TINYCRYPT
select TINYCRYPT_AES
select TINYCRYPT_AES_CBC
@ -49,7 +49,7 @@ config CRYPTO_TINYCRYPT_SHIM_DRV_NAME
Device name for TinyCrypt Pseudo device.
config CRYPTO_MBEDTLS_SHIM
bool "Enable mbedTLS shim driver [EXPERIMENTAL]"
bool "MbedTLS shim driver [EXPERIMENTAL]"
select MBEDTLS
select MBEDTLS_ENABLE_HEAP
select EXPERIMENTAL

View file

@ -18,7 +18,7 @@ module-str = DAC
source "subsys/logging/Kconfig.template.log_config"
config DAC_SHELL
bool "Enable DAC shell"
bool "DAC shell"
default y
depends on SHELL
help

View file

@ -17,7 +17,7 @@ config DAC_MCUX_DAC32
Enable the driver for the NXP Kinetis MCUX DAC32.
config DAC_MCUX_DAC32_TESTOUT
bool "Enable DAC test output"
bool "DAC test output"
depends on DAC_MCUX_DAC32
help
Enable the DAC test output.

View file

@ -7,7 +7,7 @@ config HAS_SEGGER_RTT
Indicates that the platform supports SEGGER J-Link RTT.
config USE_SEGGER_RTT
bool "Enable SEGGER RTT libraries."
bool "SEGGER RTT libraries."
depends on HAS_SEGGER_RTT
help
Enable Segger J-Link RTT libraries for platforms that support it.
@ -17,7 +17,7 @@ config USE_SEGGER_RTT
if USE_SEGGER_RTT
config SEGGER_RTT_CUSTOM_LOCKING
bool "Enable custom locking"
bool "Custom locking"
help
Enable custom locking using a mutex.

View file

@ -28,7 +28,7 @@ config SSD1306_DEFAULT
bool "Default SSD1306 controller"
config SSD1306_SH1106_COMPATIBLE
bool "Enable SH1106 compatible mode"
bool "SH1106 compatible mode"
endchoice

View file

@ -4,6 +4,6 @@
# SPDX-License-Identifier: Apache-2.0
config DMA_CAVS_GPDMA
bool "Enable cAVS GPDMA DMA driver"
bool "CAVS GPDMA DMA driver"
help
Intel cAVS GPDMA DMA driver.

View file

@ -4,6 +4,6 @@
# SPDX-License-Identifier: Apache-2.0
config DMA_DW
bool "Enable DesignWare DMA driver"
bool "DesignWare DMA driver"
help
DesignWare DMA driver.

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config DMA_MCUX_EDMA
bool "Enable MCUX DMA driver"
bool "MCUX DMA driver"
depends on HAS_MCUX_EDMA
imply NOCACHE_MEMORY if HAS_MCUX_CACHE
help

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
config DMA_MCUX_LPC
bool "Enable MCUX LPC DMAC driver"
bool "MCUX LPC DMAC driver"
depends on HAS_MCUX_LPC_DMA
help
DMA driver for MCUX LPC MCUs.

View file

@ -10,7 +10,7 @@ DT_COMPAT_ST_STM32_DMA_V2BIS := st,stm32-dma-v2bis
DT_COMPAT_ST_STM32_DMAMUX := st,stm32-dmamux
config DMA_STM32
bool "Enable STM32 DMA driver"
bool "STM32 DMA driver"
select USE_STM32_LL_DMA
depends on SOC_FAMILY_STM32
help

View file

@ -11,13 +11,13 @@ menuconfig EDAC
if EDAC
config EDAC_ERROR_INJECT
bool "Enable EDAC Error Injection mechanism"
bool "EDAC Error Injection mechanism"
help
Enable Error injection capability for test error checking
and reporting. Should not be enabled in production system.
config EDAC_SHELL
bool "Enable EDAC Shell"
bool "EDAC Shell"
depends on SHELL
default y if SHELL
help

View file

@ -21,7 +21,7 @@ config EEPROM_INIT_PRIORITY
EEPROM driver device initialization priority.
config EEPROM_SHELL
bool "Enable EEPROM shell"
bool "EEPROM shell"
default y
depends on SHELL
help
@ -68,7 +68,7 @@ config EEPROM_SIMULATOR
Enable Simulated EEPROM driver.
config EEPROM_SIMULATOR_SIMULATE_TIMING
bool "Enable hardware timing simulation"
bool "Hardware timing simulation"
depends on EEPROM_SIMULATOR
help
Enable Simulated hardware timing.

View file

@ -25,7 +25,7 @@ menuconfig ENTROPY_NRF5_RNG
if ENTROPY_NRF5_RNG
config ENTROPY_NRF5_BIAS_CORRECTION
bool "Enable bias correction (uniform distribution)"
bool "Bias correction (uniform distribution)"
help
This option enables the RNG bias correction, which guarantees a
uniform distribution of 0 and 1. When this option is enabled, the time

View file

@ -17,25 +17,25 @@ config DSA_KSZ8XXX
bool
config DSA_KSZ8794
bool "Enable support for KSZ8794"
bool "Support for KSZ8794"
select DSA_KSZ8XXX
help
Add support for KSZ8794 DSA device driver.
config DSA_KSZ8863
bool "Enable support for KSZ8863"
bool "Support for KSZ8863"
select DSA_KSZ8XXX
help
Add support for KSZ8863 DSA device driver.
config DSA_KSZ_TAIL_TAGGING
bool "Enable support for tail tagging"
bool "Support for tail tagging"
depends on DSA_KSZ8794 || DSA_KSZ8863
help
Add support for tail tagging on DSA device.
config DSA_SPI
bool "Enable support for PHY SPI interface"
bool "Support for PHY SPI interface"
depends on SPI && (DSA_KSZ8794 || DSA_KSZ8863)
help
Use SPI bus to communicate with PHY

View file

@ -19,13 +19,13 @@ config ETH_NIC_MODEL
a parameter to -nic qemu command line option.
config ETH_E1000_VERBOSE_DEBUG
bool "Enable hexdump of the received and sent frames"
bool "Hexdump of the received and sent frames"
help
Enabling this will turn on the hexdump of the received and sent
frames. Do not leave on for production.
config ETH_E1000_PTP_CLOCK
bool "Enable PTP clock driver support [EXPERIMENTAL]"
bool "PTP clock driver support [EXPERIMENTAL]"
depends on PTP_CLOCK
select EXPERIMENTAL
default y

View file

@ -17,13 +17,13 @@ menuconfig ETH_MCUX
if ETH_MCUX
config ETH_MCUX_PROMISCUOUS_MODE
bool "Enable promiscuous mode"
bool "Promiscuous mode"
help
Place the Ethernet receiver in promiscuous mode. This may be useful
for debugging and not needed for normal work.
config ETH_MCUX_RMII_EXT_CLK
bool "Enable RMII clock from external sources"
bool "RMII clock from external sources"
help
Setting this option will configure MCUX clock block to feed RMII
reference clock from external source (ENET_1588_CLKIN)
@ -43,7 +43,7 @@ config ETH_MCUX_PHY_TICK_MS
Set the PHY status polling period.
config ETH_MCUX_PHY_EXTRA_DEBUG
bool "Enable additional detailed PHY debug"
bool "Additional detailed PHY debug"
help
Enable additional PHY related debug information related to
PHY status polling.
@ -63,7 +63,7 @@ config ETH_MCUX_TX_BUFFERS
Set the number of TX buffers provided to the MCUX driver.
config ETH_MCUX_HW_ACCELERATION
bool "Enable hardware acceleration"
bool "Hardware acceleration"
help
Enable hardware acceleration for the following:
- IPv4, UDP and TCP checksum (both Rx and Tx)

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
menuconfig ETH_STELLARIS
bool "Enable TI Stellaris MCU family ethernet driver."
bool "TI Stellaris MCU family ethernet driver."
help
Stellaris on-board Ethernet Controller

View file

@ -89,7 +89,7 @@ config ETH_STM32_CARRIER_CHECK_RX_IDLE_TIMEOUT_MS
PHY's carrier status is re-evaluated.
config ETH_STM32_AUTO_NEGOTIATION_ENABLE
bool "Enable autonegotiation mode"
bool "Autonegotiation mode"
default y
help
Enable this if using autonegotiation
@ -97,14 +97,14 @@ config ETH_STM32_AUTO_NEGOTIATION_ENABLE
if !ETH_STM32_AUTO_NEGOTIATION_ENABLE
config ETH_STM32_SPEED_10M
bool "Enable this if using 10 Mbps for speed when autonegotiation is diabled"
bool "This if using 10 Mbps for speed when autonegotiation is diabled"
default n
help
Set this if using 10 Mbps and when autonegotiation is disabled, otherwise speed
is 100 Mbps
config ETH_STM32_MODE_HALFDUPLEX
bool "Enable this if using half duplex"
bool "This if using half duplex"
default n
help
Set this if using half duplex when autonegotiation is disabled otherwise

View file

@ -44,7 +44,7 @@ module-str = flash
source "subsys/logging/Kconfig.template.log_config"
config FLASH_SHELL
bool "Enable Flash shell"
bool "Flash shell"
depends on SHELL && FLASH_PAGE_LAYOUT
default y
help

View file

@ -27,7 +27,7 @@ config FLASH_SIMULATOR_DOUBLE_WRITES
Keep in mind that write operations can only pull bits to zero, regardless.
config FLASH_SIMULATOR_SIMULATE_TIMING
bool "Enable hardware timing simulation"
bool "Hardware timing simulation"
if FLASH_SIMULATOR_SIMULATE_TIMING

View file

@ -15,7 +15,7 @@ module-str = fpga
source "subsys/logging/Kconfig.template.log_config"
config FPGA_SHELL
bool "Enable FPGA Shell"
bool "FPGA Shell"
depends on SHELL && FPGA
help
Enable FPGA Shell support.

View file

@ -16,7 +16,7 @@ module-str = gpio
source "subsys/logging/Kconfig.template.log_config"
config GPIO_SHELL
bool "Enable GPIO Shell"
bool "GPIO Shell"
depends on SHELL
help
Enable GPIO Shell for testing.

View file

@ -14,7 +14,7 @@ config GPIO_DW_SHARED_IRQ
bool
config GPIO_DW_CLOCK_GATE
bool "Enable clock gating"
bool "Clock gating"
select CLOCK_CONTROL
config GPIO_DW_CLOCK_GATE_DRV_NAME

View file

@ -15,7 +15,7 @@ module-str = HWINFO
source "subsys/logging/Kconfig.template.log_config"
config HWINFO_SHELL
bool "Enable HWINFO Shell"
bool "HWINFO Shell"
default y
depends on SHELL
help

View file

@ -14,7 +14,7 @@ menuconfig I2C
if I2C
config I2C_SHELL
bool "Enable I2C Shell"
bool "I2C Shell"
default y
depends on SHELL
help
@ -23,7 +23,7 @@ config I2C_SHELL
The I2C shell currently support scanning and bus recovery.
config I2C_STATS
bool "Enable I2C device Stats"
bool "I2C device Stats"
depends on STATS
help
Enable I2C Stats.

View file

@ -9,7 +9,7 @@ menuconfig I2C_SAM0
Enable the SAM0 series SERCOM I2C driver.
config I2C_SAM0_DMA_DRIVEN
bool "Enable DMA support for SAM0 I2C devices"
bool "DMA support for SAM0 I2C devices"
depends on I2C_SAM0
select DMA
help

View file

@ -22,7 +22,7 @@ config I2S_STM32_TX_BLOCK_COUNT
default 4
config I2S_STM32_USE_PLLI2S_ENABLE
bool "Enable usage of PLL"
bool "Usage of PLL"
help
Enable it if I2S clock should be provided by the PLLI2S.
If not enabled the clock will be provided by HSI/HSE.

View file

@ -40,7 +40,7 @@ config IEEE802154_RDEV
PHY is a ranging-capable device (RDEV)
config IEEE802154_VENDOR_OUI_ENABLE
bool "Enables setting Vendor Organizationally Unique Identifier"
bool "Setting Vendor Organizationally Unique Identifier"
help
This option enables setting custom vendor
OUI using IEEE802154_VENDOR_OUI. After enabling,
@ -133,7 +133,7 @@ endif # IEEE802154_UPIPE_RANDOM_MAC
endif # IEEE802154_UPIPE
config IEEE802154_2015
bool "Enable support for IEEE 802.15.4-2015 frames"
bool "Support for IEEE 802.15.4-2015 frames"
help
Enable radio driver support for IEEE 802.15.4-2015 frames, including security handling of frames and ACKs.
@ -145,7 +145,7 @@ config IEEE802154_DELAY_TRX_ACC
or delayed reception), in ppm.
config IEEE802154_CSL_ENDPOINT
bool "Enable support for CSL Endpoint"
bool "Support for CSL Endpoint"
help
Enable support for CSL Endpoint with delayed reception handling and CSL IE injection.

View file

@ -71,7 +71,7 @@ config IEEE802154_CC2520_MAC7
endif # IEEE802154_CC2520_RANDOM_MAC
config IEEE802154_CC2520_CRYPTO
bool "Enable hardware crypto helper on cc2520"
bool "Hardware crypto helper on cc2520"
depends on NET_L2_IEEE802154_SECURITY
help
This option will expose the hardware AES encryption from CC2520.

Some files were not shown because too many files have changed in this diff Show more