Kconfig: Remove copy-pasted comments on some promptless symbols

Remove the

    # Omit prompt to signify a "hidden" option

comments that appear on some symbols. They seem to have been copy-pasted
at random, as there are lots of promptless symbols that don't have them
(that's confusing in itself, because it might give the idea that the
ones with comments are special in some way).

I suspect those comments wouldn't have helped me much if I didn't know
Kconfig either. There's a lot more Kconfig documentation now too, e.g.
https://docs.zephyrproject.org/latest/guides/kconfig/index.html.

Keep some comments that give more information than the symbol having no
prompt.

Also do some minor drive-by cleanup.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
Ulf Magnusson 2019-10-17 16:53:06 +02:00 committed by Maureen Helm
commit ac9fe11f2f
29 changed files with 7 additions and 78 deletions

View file

@ -433,13 +433,11 @@ config CPU_HAS_FPU
config CPU_HAS_MPU config CPU_HAS_MPU
bool bool
# Omit prompt to signify "hidden" option
help help
This option is enabled when the CPU has a Memory Protection Unit (MPU). This option is enabled when the CPU has a Memory Protection Unit (MPU).
config MEMORY_PROTECTION config MEMORY_PROTECTION
bool bool
# Omit prompt to signify "hidden" option
help help
This option is enabled when Memory Protection features are supported. This option is enabled when Memory Protection features are supported.
Memory protection support is currently available on ARC, ARM, and x86 Memory protection support is currently available on ARC, ARM, and x86
@ -447,14 +445,12 @@ config MEMORY_PROTECTION
config MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT config MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT
bool bool
# Omit prompt to signify "hidden" option
help help
This option is enabled when the MPU requires a power of two alignment This option is enabled when the MPU requires a power of two alignment
and size for MPU regions. and size for MPU regions.
config MPU_REQUIRES_NON_OVERLAPPING_REGIONS config MPU_REQUIRES_NON_OVERLAPPING_REGIONS
bool bool
# Omit prompt to signify "hidden" option
help help
This option is enabled when the MPU requires the active (i.e. enabled) This option is enabled when the MPU requires the active (i.e. enabled)
MPU regions to be non-overlapping with each other. MPU regions to be non-overlapping with each other.

View file

@ -8,13 +8,11 @@
config CPU_CORTEX config CPU_CORTEX
bool bool
# Omit prompt to signify "hidden" option
help help
This option signifies the use of a CPU of the Cortex family. This option signifies the use of a CPU of the Cortex family.
config CPU_CORTEX_M config CPU_CORTEX_M
bool bool
# Omit prompt to signify "hidden" option
select CPU_CORTEX select CPU_CORTEX
select ARCH_HAS_CUSTOM_SWAP_TO_MAIN select ARCH_HAS_CUSTOM_SWAP_TO_MAIN
select HAS_CMSIS select HAS_CMSIS

View file

@ -15,7 +15,6 @@
config CPU_CORTEX_M0 config CPU_CORTEX_M0
bool bool
select CPU_CORTEX_M select CPU_CORTEX_M
# Omit prompt to signify "hidden" option
select ARMV6_M_ARMV8_M_BASELINE select ARMV6_M_ARMV8_M_BASELINE
help help
This option signifies the use of a Cortex-M0 CPU This option signifies the use of a Cortex-M0 CPU
@ -23,7 +22,6 @@ config CPU_CORTEX_M0
config CPU_CORTEX_M0PLUS config CPU_CORTEX_M0PLUS
bool bool
select CPU_CORTEX_M select CPU_CORTEX_M
# Omit prompt to signify "hidden" option
select ARMV6_M_ARMV8_M_BASELINE select ARMV6_M_ARMV8_M_BASELINE
help help
This option signifies the use of a Cortex-M0+ CPU This option signifies the use of a Cortex-M0+ CPU
@ -31,7 +29,6 @@ config CPU_CORTEX_M0PLUS
config CPU_CORTEX_M3 config CPU_CORTEX_M3
bool bool
select CPU_CORTEX_M select CPU_CORTEX_M
# Omit prompt to signify "hidden" option
select ARMV7_M_ARMV8_M_MAINLINE select ARMV7_M_ARMV8_M_MAINLINE
help help
This option signifies the use of a Cortex-M3 CPU This option signifies the use of a Cortex-M3 CPU
@ -39,7 +36,6 @@ config CPU_CORTEX_M3
config CPU_CORTEX_M4 config CPU_CORTEX_M4
bool bool
select CPU_CORTEX_M select CPU_CORTEX_M
# Omit prompt to signify "hidden" option
select ARMV7_M_ARMV8_M_MAINLINE select ARMV7_M_ARMV8_M_MAINLINE
select ARMV7_M_ARMV8_M_FP if CPU_HAS_FPU select ARMV7_M_ARMV8_M_FP if CPU_HAS_FPU
help help
@ -48,7 +44,6 @@ config CPU_CORTEX_M4
config CPU_CORTEX_M23 config CPU_CORTEX_M23
bool bool
select CPU_CORTEX_M select CPU_CORTEX_M
# Omit prompt to signify "hidden" option
select ARMV8_M_BASELINE select ARMV8_M_BASELINE
select ARMV8_M_SE if CPU_HAS_TEE select ARMV8_M_SE if CPU_HAS_TEE
help help
@ -57,7 +52,6 @@ config CPU_CORTEX_M23
config CPU_CORTEX_M33 config CPU_CORTEX_M33
bool bool
select CPU_CORTEX_M select CPU_CORTEX_M
# Omit prompt to signify "hidden" option
select ARMV8_M_MAINLINE select ARMV8_M_MAINLINE
select ARMV8_M_SE if CPU_HAS_TEE select ARMV8_M_SE if CPU_HAS_TEE
select ARMV7_M_ARMV8_M_FP if CPU_HAS_FPU select ARMV7_M_ARMV8_M_FP if CPU_HAS_FPU
@ -67,7 +61,6 @@ config CPU_CORTEX_M33
config CPU_CORTEX_M7 config CPU_CORTEX_M7
bool bool
select CPU_CORTEX_M select CPU_CORTEX_M
# Omit prompt to signify "hidden" option
select ARMV7_M_ARMV8_M_MAINLINE select ARMV7_M_ARMV8_M_MAINLINE
select ARMV7_M_ARMV8_M_FP if CPU_HAS_FPU select ARMV7_M_ARMV8_M_FP if CPU_HAS_FPU
help help
@ -77,13 +70,11 @@ if CPU_CORTEX_M
config CPU_CORTEX_M_HAS_SYSTICK config CPU_CORTEX_M_HAS_SYSTICK
bool bool
# Omit prompt to signify "hidden" option
help help
This option is enabled when the CPU implements the SysTick timer. This option is enabled when the CPU implements the SysTick timer.
config CPU_CORTEX_M_HAS_BASEPRI config CPU_CORTEX_M_HAS_BASEPRI
bool bool
# Omit prompt to signify "hidden" option
depends on ARMV7_M_ARMV8_M_MAINLINE depends on ARMV7_M_ARMV8_M_MAINLINE
help help
This option signifies the CPU has the BASEPRI register. This option signifies the CPU has the BASEPRI register.
@ -97,7 +88,6 @@ config CPU_CORTEX_M_HAS_BASEPRI
config CPU_CORTEX_M_HAS_VTOR config CPU_CORTEX_M_HAS_VTOR
bool bool
# Omit prompt to signify "hidden" option
depends on !CPU_CORTEX_M0 depends on !CPU_CORTEX_M0
help help
This option signifies the CPU has the VTOR register. This option signifies the CPU has the VTOR register.
@ -110,7 +100,6 @@ config CPU_CORTEX_M_HAS_VTOR
config CPU_CORTEX_M_HAS_SPLIM config CPU_CORTEX_M_HAS_SPLIM
bool bool
# Omit prompt to signify "hidden" option
depends on ARMV8_M_MAINLINE || (ARMV8_M_SE && !ARM_NONSECURE_FIRMWARE) depends on ARMV8_M_MAINLINE || (ARMV8_M_SE && !ARM_NONSECURE_FIRMWARE)
help help
This option signifies the CPU has the MSPLIM, PSPLIM registers. This option signifies the CPU has the MSPLIM, PSPLIM registers.
@ -127,7 +116,6 @@ config CPU_CORTEX_M_HAS_SPLIM
config CPU_CORTEX_M_HAS_PROGRAMMABLE_FAULT_PRIOS config CPU_CORTEX_M_HAS_PROGRAMMABLE_FAULT_PRIOS
bool bool
# Omit prompt to signify "hidden" option
depends on ARMV7_M_ARMV8_M_MAINLINE depends on ARMV7_M_ARMV8_M_MAINLINE
help help
This option signifies the CPU may trigger system faults This option signifies the CPU may trigger system faults
@ -136,7 +124,6 @@ config CPU_CORTEX_M_HAS_PROGRAMMABLE_FAULT_PRIOS
config CPU_CORTEX_M0_HAS_VECTOR_TABLE_REMAP config CPU_CORTEX_M0_HAS_VECTOR_TABLE_REMAP
bool bool
# Omit prompt to signify "hidden" option
help help
This option signifies the Cortex-M0 has some mechanisms that can map This option signifies the Cortex-M0 has some mechanisms that can map
the vector table to SRAM the vector table to SRAM
@ -149,7 +136,6 @@ config CPU_CORTEX_M_HAS_CMSE
config ARMV6_M_ARMV8_M_BASELINE config ARMV6_M_ARMV8_M_BASELINE
bool bool
# Omit prompt to signify "hidden" option
select ATOMIC_OPERATIONS_C select ATOMIC_OPERATIONS_C
select ISA_THUMB2 select ISA_THUMB2
help help
@ -167,7 +153,6 @@ config ARMV6_M_ARMV8_M_BASELINE
config ARMV8_M_BASELINE config ARMV8_M_BASELINE
bool bool
# Omit prompt to signify "hidden" option
select ARMV6_M_ARMV8_M_BASELINE select ARMV6_M_ARMV8_M_BASELINE
select CPU_CORTEX_M_HAS_CMSE select CPU_CORTEX_M_HAS_CMSE
help help
@ -179,7 +164,6 @@ config ARMV8_M_BASELINE
config ARMV7_M_ARMV8_M_MAINLINE config ARMV7_M_ARMV8_M_MAINLINE
bool bool
# Omit prompt to signify "hidden" option
select ATOMIC_OPERATIONS_BUILTIN select ATOMIC_OPERATIONS_BUILTIN
select ISA_THUMB2 select ISA_THUMB2
select CPU_CORTEX_M_HAS_BASEPRI select CPU_CORTEX_M_HAS_BASEPRI
@ -203,7 +187,6 @@ config ARMV7_M_ARMV8_M_MAINLINE
config ARMV8_M_MAINLINE config ARMV8_M_MAINLINE
bool bool
# Omit prompt to signify "hidden" option
select ARMV7_M_ARMV8_M_MAINLINE select ARMV7_M_ARMV8_M_MAINLINE
select CPU_CORTEX_M_HAS_SPLIM select CPU_CORTEX_M_HAS_SPLIM
select CPU_CORTEX_M_HAS_CMSE select CPU_CORTEX_M_HAS_CMSE
@ -216,7 +199,6 @@ config ARMV8_M_MAINLINE
config ARMV8_M_SE config ARMV8_M_SE
bool bool
# Omit prompt to signify "hidden" option
depends on ARMV8_M_BASELINE || ARMV8_M_MAINLINE depends on ARMV8_M_BASELINE || ARMV8_M_MAINLINE
select CPU_CORTEX_M_HAS_SPLIM if !ARM_NONSECURE_FIRMWARE select CPU_CORTEX_M_HAS_SPLIM if !ARM_NONSECURE_FIRMWARE
help help
@ -226,7 +208,6 @@ config ARMV8_M_SE
config ARMV7_M_ARMV8_M_FP config ARMV7_M_ARMV8_M_FP
bool bool
# Omit prompt to signify "hidden" option
depends on ARMV7_M_ARMV8_M_MAINLINE && !CPU_CORTEX_M3 depends on ARMV7_M_ARMV8_M_MAINLINE && !CPU_CORTEX_M3
help help
This option signifies the use of an ARMv7-M processor This option signifies the use of an ARMv7-M processor
@ -235,7 +216,6 @@ config ARMV7_M_ARMV8_M_FP
config ARMV8_M_DSP config ARMV8_M_DSP
bool bool
# Omit prompt to signify "hidden" option
depends on ARMV8_M_MAINLINE depends on ARMV8_M_MAINLINE
help help
This option signifies the use of an ARMv8-M processor This option signifies the use of an ARMv8-M processor

View file

@ -9,8 +9,6 @@ if BOARD_EFM32HG_SLSTK3400A
config BOARD_INIT_PRIORITY config BOARD_INIT_PRIORITY
int int
# omit prompt to signify a "hidden" option
default KERNEL_INIT_PRIORITY_DEFAULT default KERNEL_INIT_PRIORITY_DEFAULT
depends on GPIO depends on GPIO
help help

View file

@ -8,8 +8,6 @@ if BOARD_EFM32PG_STK3402A
config BOARD_INIT_PRIORITY config BOARD_INIT_PRIORITY
int int
# omit prompt to signify a "hidden" option
default KERNEL_INIT_PRIORITY_DEFAULT default KERNEL_INIT_PRIORITY_DEFAULT
depends on GPIO depends on GPIO
help help

View file

@ -8,8 +8,6 @@ if BOARD_EFM32WG_STK3800
config BOARD_INIT_PRIORITY config BOARD_INIT_PRIORITY
int int
# omit prompt to signify a "hidden" option
default KERNEL_INIT_PRIORITY_DEFAULT default KERNEL_INIT_PRIORITY_DEFAULT
depends on GPIO depends on GPIO
help help

View file

@ -8,8 +8,6 @@ if BOARD_EFR32_SLWSTK6061A
config BOARD_INIT_PRIORITY config BOARD_INIT_PRIORITY
int int
# omit prompt to signify a "hidden" option
default KERNEL_INIT_PRIORITY_DEFAULT default KERNEL_INIT_PRIORITY_DEFAULT
depends on GPIO depends on GPIO
help help

View file

@ -8,8 +8,6 @@ if BOARD_EFR32MG_SLTB004A
config BOARD_INIT_PRIORITY config BOARD_INIT_PRIORITY
int int
# omit prompt to signify a "hidden" option
default KERNEL_INIT_PRIORITY_DEFAULT default KERNEL_INIT_PRIORITY_DEFAULT
help help
Board initialization priority. This must be bigger than Board initialization priority. This must be bigger than

View file

@ -48,7 +48,6 @@ endchoice
config IPM_IMX_MAX_DATA_SIZE config IPM_IMX_MAX_DATA_SIZE
int int
range 4 16 range 4 16
# omit prompt to signify a "hidden" option
default 4 if IPM_IMX_MAX_DATA_SIZE_4 default 4 if IPM_IMX_MAX_DATA_SIZE_4
default 8 if IPM_IMX_MAX_DATA_SIZE_8 default 8 if IPM_IMX_MAX_DATA_SIZE_8
default 16 if IPM_IMX_MAX_DATA_SIZE_16 default 16 if IPM_IMX_MAX_DATA_SIZE_16
@ -57,7 +56,6 @@ config IPM_IMX_MAX_DATA_SIZE
config IPM_IMX_MAX_ID_VAL config IPM_IMX_MAX_ID_VAL
int int
range 0 3 range 0 3
# omit prompt to signify a "hidden" option
default 3 if IPM_IMX_MAX_DATA_SIZE_4 default 3 if IPM_IMX_MAX_DATA_SIZE_4
default 1 if IPM_IMX_MAX_DATA_SIZE_8 default 1 if IPM_IMX_MAX_DATA_SIZE_8
default 0 if IPM_IMX_MAX_DATA_SIZE_16 default 0 if IPM_IMX_MAX_DATA_SIZE_16

View file

@ -1,14 +1,10 @@
# Kconfig - general options signifying CPU capabilities of ARM SoCs # Kconfig - general options signifying CPU capabilities of ARM SoCs
#
# Copyright (c) 2018 Nordic Semiconductor ASA. # Copyright (c) 2018 Nordic Semiconductor ASA.
#
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
#
config CPU_HAS_ARM_MPU config CPU_HAS_ARM_MPU
bool bool
# Omit prompt to signify "hidden" option
select CPU_HAS_MPU select CPU_HAS_MPU
help help
This option is enabled when the CPU has a Memory Protection Unit (MPU) This option is enabled when the CPU has a Memory Protection Unit (MPU)
@ -16,7 +12,6 @@ config CPU_HAS_ARM_MPU
config CPU_HAS_NXP_MPU config CPU_HAS_NXP_MPU
bool bool
# Omit prompt to signify "hidden" option
select CPU_HAS_MPU select CPU_HAS_MPU
help help
This option is enabled when the CPU has a Memory Protection Unit (MPU) This option is enabled when the CPU has a Memory Protection Unit (MPU)
@ -24,14 +19,12 @@ config CPU_HAS_NXP_MPU
config CPU_HAS_ARM_SAU config CPU_HAS_ARM_SAU
bool bool
# Omit prompt to signify "hidden" option
select CPU_HAS_TEE select CPU_HAS_TEE
help help
MCU implements the ARM Security Attribution Unit (SAU). MCU implements the ARM Security Attribution Unit (SAU).
config CPU_HAS_NRF_IDAU config CPU_HAS_NRF_IDAU
bool bool
# Omit prompt to signify "hidden" option
depends on SOC_SERIES_NRF91X depends on SOC_SERIES_NRF91X
select CPU_HAS_TEE select CPU_HAS_TEE
help help
@ -41,7 +34,6 @@ config CPU_HAS_NRF_IDAU
config CPU_HAS_FPU_DOUBLE_PRECISION config CPU_HAS_FPU_DOUBLE_PRECISION
bool bool
# Omit prompt to signify "hidden" option
depends on CPU_CORTEX_M7 depends on CPU_CORTEX_M7
select CPU_HAS_FPU select CPU_HAS_FPU
help help
@ -50,6 +42,5 @@ config CPU_HAS_FPU_DOUBLE_PRECISION
config HAS_SWO config HAS_SWO
bool bool
# Omit prompt to signify "hidden" option
help help
When enabled, indicates that SoC has an SWO output When enabled, indicates that SoC has an SWO output

View file

@ -7,7 +7,6 @@
config SOC_FAMILY_ARM config SOC_FAMILY_ARM
bool bool
# omit prompt to signify a "hidden" option
if SOC_FAMILY_ARM if SOC_FAMILY_ARM
config SOC_FAMILY config SOC_FAMILY

View file

@ -5,7 +5,6 @@
config SOC_FAMILY_SAM config SOC_FAMILY_SAM
bool bool
# omit prompt to signify a "hidden" option
select HAS_SEGGER_RTT select HAS_SEGGER_RTT
if SOC_FAMILY_SAM if SOC_FAMILY_SAM

View file

@ -1,12 +1,10 @@
# Kconfig - Microchip MEC MCU line # Kconfig - Microchip MEC MCU line
#
# Copyright (c) 2018, Intel Corporation # Copyright (c) 2018, Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
#
config SOC_FAMILY_MEC config SOC_FAMILY_MEC
bool bool
# omit prompt to signify a "hidden" option
if SOC_FAMILY_MEC if SOC_FAMILY_MEC
config SOC_FAMILY config SOC_FAMILY

View file

@ -1,15 +1,12 @@
# Kconfig - Nordic Semiconductor nRFx MCU line # Kconfig - Nordic Semiconductor nRFx MCU line
#
# Copyright (c) 2016-2018 Nordic Semiconductor ASA # Copyright (c) 2016-2018 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
#
config SOC_FAMILY_NRF config SOC_FAMILY_NRF
select SOC_COMPATIBLE_NRF select SOC_COMPATIBLE_NRF
select PLATFORM_SPECIFIC_INIT select PLATFORM_SPECIFIC_INIT
bool bool
# omit prompt to signify a "hidden" option
if SOC_FAMILY_NRF if SOC_FAMILY_NRF
config SOC_FAMILY config SOC_FAMILY

View file

@ -1,15 +1,12 @@
#
# Copyright (c) 2017, NXP # Copyright (c) 2017, NXP
#
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
#
config SOC_FAMILY_IMX config SOC_FAMILY_IMX
bool bool
select HAS_SEGGER_RTT select HAS_SEGGER_RTT
# omit prompt to signify a "hidden" option
if SOC_FAMILY_IMX if SOC_FAMILY_IMX
config SOC_FAMILY config SOC_FAMILY
string string
default "nxp_imx" default "nxp_imx"

View file

@ -8,9 +8,9 @@
config SOC_FAMILY_KINETIS config SOC_FAMILY_KINETIS
bool bool
select HAS_SEGGER_RTT select HAS_SEGGER_RTT
# omit prompt to signify a "hidden" option
if SOC_FAMILY_KINETIS if SOC_FAMILY_KINETIS
config SOC_FAMILY config SOC_FAMILY
string string
default "nxp_kinetis" default "nxp_kinetis"

View file

@ -73,7 +73,6 @@ config K22_FLASH_CLOCK_DIVIDER
config WDOG_INIT config WDOG_INIT
def_bool y def_bool y
# omit prompt to signify a "hidden" option
help help
This processor enables the watchdog timer with a short timeout This processor enables the watchdog timer with a short timeout
upon reset. Therefore, this requires that the watchdog be configured upon reset. Therefore, this requires that the watchdog be configured

View file

@ -100,7 +100,6 @@ config K64_FLASH_CLOCK_DIVIDER
config WDOG_INIT config WDOG_INIT
def_bool y def_bool y
# omit prompt to signify a "hidden" option
help help
This processor enables the watchdog timer with a short timeout This processor enables the watchdog timer with a short timeout
upon reset. Therefore, this requires that the watchdog be configured upon reset. Therefore, this requires that the watchdog be configured

View file

@ -73,7 +73,6 @@ config K8X_FLASH_CLOCK_DIVIDER
config WDOG_INIT config WDOG_INIT
def_bool y def_bool y
# omit prompt to signify a "hidden" option
help help
This processor enables the watchdog timer with a short This processor enables the watchdog timer with a short
window for configuration upon reset. Therefore, this window for configuration upon reset. Therefore, this

View file

@ -82,7 +82,6 @@ config SOC_PART_NUMBER_KINETIS_KE1XF
config WDOG_INIT config WDOG_INIT
def_bool y def_bool y
# omit prompt to signify a "hidden" option
help help
This processor enables the watchdog timer with a short This processor enables the watchdog timer with a short
window for configuration upon reset. Therefore, this window for configuration upon reset. Therefore, this

View file

@ -113,7 +113,6 @@ config KW2XD_FLASH_CLOCK_DIVIDER
config WDOG_INIT config WDOG_INIT
def_bool y def_bool y
# omit prompt to signify a "hidden" option
help help
This processor enables the watchdog timer with a short timeout This processor enables the watchdog timer with a short timeout
upon reset. Therefore, this requires that the watchdog be configured upon reset. Therefore, this requires that the watchdog be configured

View file

@ -7,7 +7,6 @@
config SOC_FAMILY_LPC config SOC_FAMILY_LPC
bool bool
select HAS_SEGGER_RTT select HAS_SEGGER_RTT
# omit prompt to signify a "hidden" option
if SOC_FAMILY_LPC if SOC_FAMILY_LPC
config SOC_FAMILY config SOC_FAMILY

View file

@ -7,7 +7,6 @@
config SOC_FAMILY_EXX32 config SOC_FAMILY_EXX32
bool bool
# omit prompt to signify a "hidden" option
select HAS_SEGGER_RTT select HAS_SEGGER_RTT
if SOC_FAMILY_EXX32 if SOC_FAMILY_EXX32
@ -172,7 +171,6 @@ endif # SOC_GECKO_CMU
config SOC_GECKO_HAS_INDIVIDUAL_PIN_LOCATION config SOC_GECKO_HAS_INDIVIDUAL_PIN_LOCATION
bool bool
# omit prompt to signify a "hidden" option
help help
If enabled, indicates that SoC allows to configure individual pin If enabled, indicates that SoC allows to configure individual pin
locations. This is supported by e.g. efr32fg1p, efr32mg12p series. locations. This is supported by e.g. efr32fg1p, efr32mg12p series.

View file

@ -7,7 +7,6 @@
config SOC_FAMILY_STM32 config SOC_FAMILY_STM32
bool bool
# omit prompt to signify a "hidden" option
select HAS_SEGGER_RTT select HAS_SEGGER_RTT
select BUILD_OUTPUT_HEX select BUILD_OUTPUT_HEX

View file

@ -1,11 +1,9 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
# Kconfig - Texas Instruments SimpleLink Family # Kconfig - Texas Instruments SimpleLink Family
#
config SOC_FAMILY_TISIMPLELINK config SOC_FAMILY_TISIMPLELINK
bool bool
# omit prompt to signify a "hidden" option
if SOC_FAMILY_TISIMPLELINK if SOC_FAMILY_TISIMPLELINK
config SOC_FAMILY config SOC_FAMILY

View file

@ -8,7 +8,6 @@
config SOC_FAMILY_RISCV_PRIVILEGE config SOC_FAMILY_RISCV_PRIVILEGE
bool bool
# omit prompt to signify a "hidden" option
config SOC_FAMILY config SOC_FAMILY
string string

View file

@ -89,7 +89,6 @@ endmenu
source "subsys/bluetooth/services/Kconfig" source "subsys/bluetooth/services/Kconfig"
config BT_CONN config BT_CONN
# Virtual/hidden option
bool bool
config BT_MAX_CONN config BT_MAX_CONN

View file

@ -54,7 +54,6 @@ config BT_WAIT_NOP
ready to receive commands. ready to receive commands.
config BT_RPA config BT_RPA
# Virtual/hidden option
bool bool
select TINYCRYPT select TINYCRYPT
select TINYCRYPT_AES select TINYCRYPT_AES
@ -85,7 +84,7 @@ config BT_ASSERT_PANIC
endif # BT_ASSERT endif # BT_ASSERT
config BT_DEBUG config BT_DEBUG
# Virtual/hidden option to make the conditions more intuitive # Hidden option to make the conditions more intuitive
bool bool
choice choice

View file

@ -10,7 +10,7 @@
comment "Host Stack Configuration" comment "Host Stack Configuration"
config BT_HCI_HOST config BT_HCI_HOST
# Virtual/hidden option to make the conditions more intuitive # Hidden option to make the conditions more intuitive
bool bool
default y default y
depends on !BT_HCI_RAW depends on !BT_HCI_RAW