Skip to content

Commit ec491ec

Browse files
system: move kconfig options out of target component
Moved the following kconfig options out of the target component: * ESP32_X_BROWNOUT_* -> esp_system * ESP32_X_DEBUG_OCDAWARE -> esp_system * APP_NO_BLOBS -> build type (main kconfig) * Original commit: espressif/esp-idf@bb88338
1 parent defdfd5 commit ec491ec

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

components/mdns/test_afl_fuzz_host/sdkconfig.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@
6666
#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR 1
6767
#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES 4
6868
#define CONFIG_ESP32_ULP_COPROC_RESERVE_MEM 0
69-
#define CONFIG_ESP32_DEBUG_OCDAWARE 1
70-
#define CONFIG_ESP32_BROWNOUT_DET 1
71-
#define CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 1
72-
#define CONFIG_ESP32_BROWNOUT_DET_LVL 0
69+
#define CONFIG_ESP_DEBUG_OCDAWARE 1
70+
#define CONFIG_ESP_BROWNOUT_DET 1
71+
#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 1
72+
#define CONFIG_ESP_BROWNOUT_DET_LVL 0
7373
#define CONFIG_ESP32_REDUCE_PHY_TX_POWER 1
7474
#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT 1
7575
#define CONFIG_ESP32_RTC_CLK_SRC_INT_RC 1
@@ -342,8 +342,8 @@
342342

343343
/* List of deprecated options */
344344
#define CONFIG_ADC2_DISABLE_DAC CONFIG_ADC_DISABLE_DAC
345-
#define CONFIG_BROWNOUT_DET CONFIG_ESP32_BROWNOUT_DET
346-
#define CONFIG_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0
345+
#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET
346+
#define CONFIG_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0
347347
#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT
348348
#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE
349349
#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT

0 commit comments

Comments
 (0)