From d4a29becf4fc06fe250f5e9a12b6c15ec53d385b Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Wed, 24 Jul 2024 10:42:26 +0100 Subject: [PATCH] soc: espressif: Add default MCUboot mode to sysbuild Adds the default MCUboot operating mode when building for these SoCs using sysbuild Signed-off-by: Jamie McCrae --- soc/espressif/Kconfig.sysbuild | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 soc/espressif/Kconfig.sysbuild diff --git a/soc/espressif/Kconfig.sysbuild b/soc/espressif/Kconfig.sysbuild new file mode 100644 index 00000000000..c656630f937 --- /dev/null +++ b/soc/espressif/Kconfig.sysbuild @@ -0,0 +1,6 @@ +# Copyright (c) 2024 Nordic Semiconductor ASA +# 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 +endchoice