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

View file

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

View file

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

View file

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

View file

@ -280,7 +280,7 @@ config GEN_ISR_TABLES
default y default y
config ZERO_LATENCY_IRQS config ZERO_LATENCY_IRQS
bool "Enable zero-latency interrupts" bool "Zero-latency interrupts"
depends on CPU_CORTEX_M_HAS_BASEPRI depends on CPU_CORTEX_M_HAS_BASEPRI
help help
The kernel may reserve some of the highest interrupts priorities in The kernel may reserve some of the highest interrupts priorities in
@ -296,7 +296,7 @@ config ZERO_LATENCY_IRQS
kernel functionality. kernel functionality.
config DYNAMIC_DIRECT_INTERRUPTS config DYNAMIC_DIRECT_INTERRUPTS
bool "Enable support for dynamic direct interrupts" bool "Support for dynamic direct interrupts"
depends on DYNAMIC_INTERRUPTS depends on DYNAMIC_INTERRUPTS
help help
Direct interrupts are designed for performance-critical interrupt Direct interrupts are designed for performance-critical interrupt
@ -307,7 +307,7 @@ config DYNAMIC_DIRECT_INTERRUPTS
kernel. kernel.
config SW_VECTOR_RELAY config SW_VECTOR_RELAY
bool "Enable Software Vector Relay" bool "Software Vector Relay"
help help
When building a bootloader firmware this option adds a When building a bootloader firmware this option adds a
vector table relay handler and a vector relay table, to 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). with no hardware vector table relocation mechanisms (e.g. VTOR).
config SW_VECTOR_RELAY_CLIENT 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 default y if BOOTLOADER_MCUBOOT && !CPU_CORTEX_M0_HAS_VECTOR_TABLE_REMAP
depends on !CPU_CORTEX_M_HAS_VTOR depends on !CPU_CORTEX_M_HAS_VTOR
help help
@ -326,7 +326,7 @@ config SW_VECTOR_RELAY_CLIENT
initialization. initialization.
config CORTEX_M_DWT config CORTEX_M_DWT
bool "Enable and use the DWT" bool "And use the DWT"
depends on CPU_CORTEX_M_HAS_DWT depends on CPU_CORTEX_M_HAS_DWT
default y if TIMING_FUNCTIONS default y if TIMING_FUNCTIONS
help help
@ -345,7 +345,7 @@ endmenu
# Trace Unit and the Debug Monitor Exception, or the Memory Protection Unit. # Trace Unit and the Debug Monitor Exception, or the Memory Protection Unit.
choice NULL_POINTER_EXCEPTION_DETECTION 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 # 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_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 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 default y if 64BIT
config FLOAT_HARD config FLOAT_HARD
bool "Enable hard-float calling convention" bool "Hard-float calling convention"
default y default y
depends on FPU depends on FPU
help help
This option enables the hard-float calling convention. This option enables the hard-float calling convention.
config RISCV_GP config RISCV_GP
bool "Enable RISC-V global pointer relative addressing" bool "RISC-V global pointer relative addressing"
default n default n
help help
Use global pointer relative addressing for small globals declared Use global pointer relative addressing for small globals declared
@ -50,7 +50,7 @@ config INCLUDE_RESET_VECTOR
prepares for running C code. prepares for running C code.
config RISCV_SOC_CONTEXT_SAVE 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 select RISCV_SOC_OFFSETS
help help
Enable low-level SOC-specific context management, for SOCs 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. pointer address is in a0, and ra contains the return address.
config RISCV_SOC_OFFSETS config RISCV_SOC_OFFSETS
bool "Enable SOC-based offsets" bool "SOC-based offsets"
help help
Enabling this option requires that the SoC provide a soc_offsets.h Enabling this option requires that the SoC provide a soc_offsets.h
header which defines the following macros: header which defines the following macros:
@ -97,7 +97,7 @@ config RISCV_SOC_OFFSETS
See gen_offset.h for more details. See gen_offset.h for more details.
config RISCV_SOC_INTERRUPT_INIT config RISCV_SOC_INTERRUPT_INIT
bool "Enable SOC-based interrupt initialization" bool "SOC-based interrupt initialization"
help help
Enable SOC-based interrupt initialization Enable SOC-based interrupt initialization
(call soc_interrupt_init, within _IntLibInit when enabled) (call soc_interrupt_init, within _IntLibInit when enabled)

View file

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

View file

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

View file

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

View file

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

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC config BOARD_ENABLE_DCDC
bool "Enable DCDC mode" bool "DCDC mode"
select SOC_DCDC_NRF52X select SOC_DCDC_NRF52X
default y default y
depends on BOARD_ADAFRUIT_FEATHER_NRF52840 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 if BOARD_BL5340_DVK_CPUAPP || BOARD_BL5340_DVK_CPUAPP_NS
config BOARD_ENABLE_DCDC_APP config BOARD_ENABLE_DCDC_APP
bool "Enable Application MCU DCDC converter" bool "Application MCU DCDC converter"
select SOC_DCDC_NRF53X_APP select SOC_DCDC_NRF53X_APP
default y default y
config BOARD_ENABLE_DCDC_NET config BOARD_ENABLE_DCDC_NET
bool "Enable Network MCU DCDC converter" bool "Network MCU DCDC converter"
select SOC_DCDC_NRF53X_NET select SOC_DCDC_NRF53X_NET
default y default y
config BOARD_ENABLE_DCDC_HV config BOARD_ENABLE_DCDC_HV
bool "Enable High Voltage DCDC converter" bool "High Voltage DCDC converter"
select SOC_DCDC_NRF53X_HV select SOC_DCDC_NRF53X_HV
default y default y
@ -71,7 +71,7 @@ config BT_HCI_VS
default y if BT default y if BT
config BOARD_ENABLE_CPUNET config BOARD_ENABLE_CPUNET
bool "Enable nRF53 Network MCU" bool "NRF53 Network MCU"
help help
This option enables releasing the Network 'force off' signal, which This option enables releasing the Network 'force off' signal, which
as a consequence will power up the Network MCU during system boot. as a consequence will power up the Network MCU during system boot.

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC config BOARD_ENABLE_DCDC
bool "Enable DCDC mode" bool "DCDC mode"
select SOC_DCDC_NRF52X select SOC_DCDC_NRF52X
default y default y
depends on BOARD_NRF52DK_NRF52832 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 if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_NRF5340DK_NRF5340_CPUAPP_NS
config BOARD_ENABLE_DCDC_APP config BOARD_ENABLE_DCDC_APP
bool "Enable Application MCU DCDC converter" bool "Application MCU DCDC converter"
select SOC_DCDC_NRF53X_APP select SOC_DCDC_NRF53X_APP
default y default y
config BOARD_ENABLE_DCDC_NET config BOARD_ENABLE_DCDC_NET
bool "Enable Network MCU DCDC converter" bool "Network MCU DCDC converter"
select SOC_DCDC_NRF53X_NET select SOC_DCDC_NRF53X_NET
default y default y
config BOARD_ENABLE_DCDC_HV config BOARD_ENABLE_DCDC_HV
bool "Enable High Voltage DCDC converter" bool "High Voltage DCDC converter"
select SOC_DCDC_NRF53X_HV select SOC_DCDC_NRF53X_HV
default y default y
@ -70,7 +70,7 @@ config BT_HCI_VS
default y if BT default y if BT
config BOARD_ENABLE_CPUNET config BOARD_ENABLE_CPUNET
bool "Enable nRF53 Network MCU" bool "NRF53 Network MCU"
help help
This option enables releasing the Network 'force off' signal, which This option enables releasing the Network 'force off' signal, which
as a consequence will power up the Network MCU during system boot. as a consequence will power up the Network MCU during system boot.

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
config BOARD_ENABLE_DCDC config BOARD_ENABLE_DCDC
bool "Enable DCDC mode" bool "DCDC mode"
select SOC_DCDC_NRF52X select SOC_DCDC_NRF52X
default y default y
depends on BOARD_RUUVI_RUUVITAG 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 if BOARD_THINGY53_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP_NS
config BOARD_ENABLE_DCDC_APP config BOARD_ENABLE_DCDC_APP
bool "Enable Application MCU DCDC converter" bool "Application MCU DCDC converter"
select SOC_DCDC_NRF53X_APP select SOC_DCDC_NRF53X_APP
default y default y
config BOARD_ENABLE_DCDC_NET config BOARD_ENABLE_DCDC_NET
bool "Enable Network MCU DCDC converter" bool "Network MCU DCDC converter"
select SOC_DCDC_NRF53X_NET select SOC_DCDC_NRF53X_NET
default y default y
config BOARD_ENABLE_DCDC_HV config BOARD_ENABLE_DCDC_HV
bool "Enable High Voltage DCDC converter" bool "High Voltage DCDC converter"
select SOC_DCDC_NRF53X_HV select SOC_DCDC_NRF53X_HV
default y default y
config BOARD_ENABLE_CPUNET config BOARD_ENABLE_CPUNET
bool "Enable nRF53 Network MCU" bool "NRF53 Network MCU"
help help
This option enables releasing the Network 'force off' signal, which This option enables releasing the Network 'force off' signal, which
as a consequence will power up the Network MCU during system boot. as a consequence will power up the Network MCU during system boot.

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -60,7 +60,7 @@ config ADC_MCUX_ADC16_VREF_ALTERNATE
endchoice endchoice
config ADC_MCUX_ADC16_ENABLE_EDMA 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 depends on HAS_MCUX_ADC16 && HAS_MCUX_EDMA
help help
Enable the MCUX ADC16 driver. Enable the MCUX ADC16 driver.

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -55,7 +55,7 @@ config CLOCK_CONTROL_NRF_K32SRC_EXT_FULL_SWING
endchoice endchoice
config CLOCK_CONTROL_NRF_K32SRC_RC_CALIBRATION 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 depends on !SOC_SERIES_NRF91X && CLOCK_CONTROL_NRF_K32SRC_RC
default y default y
help help

View file

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

View file

@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
config GSM_MUX config GSM_MUX
bool "Enable GSM 07.10 muxing protocol" bool "GSM 07.10 muxing protocol"
help help
Enable GSM 07.10 muxing protocol defined in 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 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 # SPDX-License-Identifier: Apache-2.0
config COUNTER_NATIVE_POSIX config COUNTER_NATIVE_POSIX
bool "Enable counter on COUNTER_0" bool "Counter on COUNTER_0"
default y default y
depends on BOARD_NATIVE_POSIX depends on BOARD_NATIVE_POSIX

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
config DMA_MCUX_LPC config DMA_MCUX_LPC
bool "Enable MCUX LPC DMAC driver" bool "MCUX LPC DMAC driver"
depends on HAS_MCUX_LPC_DMA depends on HAS_MCUX_LPC_DMA
help help
DMA driver for MCUX LPC MCUs. 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 DT_COMPAT_ST_STM32_DMAMUX := st,stm32-dmamux
config DMA_STM32 config DMA_STM32
bool "Enable STM32 DMA driver" bool "STM32 DMA driver"
select USE_STM32_LL_DMA select USE_STM32_LL_DMA
depends on SOC_FAMILY_STM32 depends on SOC_FAMILY_STM32
help help

View file

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

View file

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

View file

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

View file

@ -17,25 +17,25 @@ config DSA_KSZ8XXX
bool bool
config DSA_KSZ8794 config DSA_KSZ8794
bool "Enable support for KSZ8794" bool "Support for KSZ8794"
select DSA_KSZ8XXX select DSA_KSZ8XXX
help help
Add support for KSZ8794 DSA device driver. Add support for KSZ8794 DSA device driver.
config DSA_KSZ8863 config DSA_KSZ8863
bool "Enable support for KSZ8863" bool "Support for KSZ8863"
select DSA_KSZ8XXX select DSA_KSZ8XXX
help help
Add support for KSZ8863 DSA device driver. Add support for KSZ8863 DSA device driver.
config DSA_KSZ_TAIL_TAGGING config DSA_KSZ_TAIL_TAGGING
bool "Enable support for tail tagging" bool "Support for tail tagging"
depends on DSA_KSZ8794 || DSA_KSZ8863 depends on DSA_KSZ8794 || DSA_KSZ8863
help help
Add support for tail tagging on DSA device. Add support for tail tagging on DSA device.
config DSA_SPI config DSA_SPI
bool "Enable support for PHY SPI interface" bool "Support for PHY SPI interface"
depends on SPI && (DSA_KSZ8794 || DSA_KSZ8863) depends on SPI && (DSA_KSZ8794 || DSA_KSZ8863)
help help
Use SPI bus to communicate with PHY 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. a parameter to -nic qemu command line option.
config ETH_E1000_VERBOSE_DEBUG config ETH_E1000_VERBOSE_DEBUG
bool "Enable hexdump of the received and sent frames" bool "Hexdump of the received and sent frames"
help help
Enabling this will turn on the hexdump of the received and sent Enabling this will turn on the hexdump of the received and sent
frames. Do not leave on for production. frames. Do not leave on for production.
config ETH_E1000_PTP_CLOCK config ETH_E1000_PTP_CLOCK
bool "Enable PTP clock driver support [EXPERIMENTAL]" bool "PTP clock driver support [EXPERIMENTAL]"
depends on PTP_CLOCK depends on PTP_CLOCK
select EXPERIMENTAL select EXPERIMENTAL
default y default y

View file

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

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
menuconfig ETH_STELLARIS menuconfig ETH_STELLARIS
bool "Enable TI Stellaris MCU family ethernet driver." bool "TI Stellaris MCU family ethernet driver."
help help
Stellaris on-board Ethernet Controller 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. PHY's carrier status is re-evaluated.
config ETH_STM32_AUTO_NEGOTIATION_ENABLE config ETH_STM32_AUTO_NEGOTIATION_ENABLE
bool "Enable autonegotiation mode" bool "Autonegotiation mode"
default y default y
help help
Enable this if using autonegotiation Enable this if using autonegotiation
@ -97,14 +97,14 @@ config ETH_STM32_AUTO_NEGOTIATION_ENABLE
if !ETH_STM32_AUTO_NEGOTIATION_ENABLE if !ETH_STM32_AUTO_NEGOTIATION_ENABLE
config ETH_STM32_SPEED_10M 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 default n
help help
Set this if using 10 Mbps and when autonegotiation is disabled, otherwise speed Set this if using 10 Mbps and when autonegotiation is disabled, otherwise speed
is 100 Mbps is 100 Mbps
config ETH_STM32_MODE_HALFDUPLEX config ETH_STM32_MODE_HALFDUPLEX
bool "Enable this if using half duplex" bool "This if using half duplex"
default n default n
help help
Set this if using half duplex when autonegotiation is disabled otherwise 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" source "subsys/logging/Kconfig.template.log_config"
config FLASH_SHELL config FLASH_SHELL
bool "Enable Flash shell" bool "Flash shell"
depends on SHELL && FLASH_PAGE_LAYOUT depends on SHELL && FLASH_PAGE_LAYOUT
default y default y
help 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. Keep in mind that write operations can only pull bits to zero, regardless.
config FLASH_SIMULATOR_SIMULATE_TIMING config FLASH_SIMULATOR_SIMULATE_TIMING
bool "Enable hardware timing simulation" bool "Hardware timing simulation"
if FLASH_SIMULATOR_SIMULATE_TIMING if FLASH_SIMULATOR_SIMULATE_TIMING

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -22,7 +22,7 @@ config I2S_STM32_TX_BLOCK_COUNT
default 4 default 4
config I2S_STM32_USE_PLLI2S_ENABLE config I2S_STM32_USE_PLLI2S_ENABLE
bool "Enable usage of PLL" bool "Usage of PLL"
help help
Enable it if I2S clock should be provided by the PLLI2S. Enable it if I2S clock should be provided by the PLLI2S.
If not enabled the clock will be provided by HSI/HSE. 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) PHY is a ranging-capable device (RDEV)
config IEEE802154_VENDOR_OUI_ENABLE config IEEE802154_VENDOR_OUI_ENABLE
bool "Enables setting Vendor Organizationally Unique Identifier" bool "Setting Vendor Organizationally Unique Identifier"
help help
This option enables setting custom vendor This option enables setting custom vendor
OUI using IEEE802154_VENDOR_OUI. After enabling, OUI using IEEE802154_VENDOR_OUI. After enabling,
@ -133,7 +133,7 @@ endif # IEEE802154_UPIPE_RANDOM_MAC
endif # IEEE802154_UPIPE endif # IEEE802154_UPIPE
config IEEE802154_2015 config IEEE802154_2015
bool "Enable support for IEEE 802.15.4-2015 frames" bool "Support for IEEE 802.15.4-2015 frames"
help help
Enable radio driver support for IEEE 802.15.4-2015 frames, including security handling of frames and ACKs. 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. or delayed reception), in ppm.
config IEEE802154_CSL_ENDPOINT config IEEE802154_CSL_ENDPOINT
bool "Enable support for CSL Endpoint" bool "Support for CSL Endpoint"
help help
Enable support for CSL Endpoint with delayed reception handling and CSL IE injection. 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 endif # IEEE802154_CC2520_RANDOM_MAC
config IEEE802154_CC2520_CRYPTO config IEEE802154_CC2520_CRYPTO
bool "Enable hardware crypto helper on cc2520" bool "Hardware crypto helper on cc2520"
depends on NET_L2_IEEE802154_SECURITY depends on NET_L2_IEEE802154_SECURITY
help help
This option will expose the hardware AES encryption from CC2520. 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