arch/Kconfig: Bring-up features should also depend on CONFIG_DEBUG_FEATURES. I missed a bring-up feature that is specific to the ESP32. I hope that the ESP32 ports still work as intended! It depended on some of these bring-up settings in the header file. I moved the definitions to the ESP32 defconfig files.

This commit is contained in:
Gregory Nutt
2018-08-19 15:38:06 -06:00
parent cba0ddad0e
commit 92b925ba02
5 changed files with 36 additions and 31 deletions
+11 -2
View File
@@ -697,10 +697,19 @@ config ARCH_NUSER_INTERRUPTS
# Bring-up debug configuration options. These are only intended for low level
# bring-up and not part of normal platform configuration. They should never be
# selected in a "normal" configuration and, hence, depend on EXPERIMENTAL
# selected in a "normal" configuration and, hence, depend on both EXPERIMENTAL
# and DEBUG_FEATURES.
menu "Bring-Up Options"
depends on EXPERIMENTAL
depends on EXPERIMENTAL && DEBUG_FEATURES
config SUPPRESS_CLOCK_CONFIG
bool "Suppress clock configuration"
default n
depends on ARCH_XTENSA
---help---
Do not configure clocking. Instead relies on the reset clock
configuration (or clock configuration provided by a bootloader).
config SUPPRESS_INTERRUPTS
bool "Suppress all interrupts"