From 3ef91ba83d2d2f33155c5f379564a6d6f446bd78 Mon Sep 17 00:00:00 2001 From: Raffael Rostagno Date: Thu, 12 Sep 2024 10:11:39 -0300 Subject: [PATCH] soc: esp32c2: esp8684: Add default MCUboot mode to sysbuild Adds the default MCUboot operating mode when building for ESP32C2/ESP8684 using sysbuild. Signed-off-by: Raffael Rostagno --- soc/espressif/Kconfig.sysbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/espressif/Kconfig.sysbuild b/soc/espressif/Kconfig.sysbuild index c656630f937d5c9..469e008510654d4 100644 --- a/soc/espressif/Kconfig.sysbuild +++ b/soc/espressif/Kconfig.sysbuild @@ -2,5 +2,5 @@ # SPDX-License-Identifier: Apache-2.0 choice MCUBOOT_MODE - default MCUBOOT_MODE_OVERWRITE_ONLY if SOC_SERIES_ESP32C3 || SOC_SERIES_ESP32C6 || SOC_ESP32_PROCPU || SOC_SERIES_ESP32S2 || SOC_ESP32S3_PROCPU + default MCUBOOT_MODE_OVERWRITE_ONLY if SOC_SERIES_ESP32C2 || SOC_SERIES_ESP32C3 || SOC_SERIES_ESP32C6 || SOC_ESP32_PROCPU || SOC_SERIES_ESP32S2 || SOC_ESP32S3_PROCPU endchoice