From 7119e77f45516fd1cef28ec756680340c421fbb3 Mon Sep 17 00:00:00 2001 From: Sigvart Hovland Date: Mon, 24 Jun 2024 13:07:14 +0200 Subject: [PATCH] machine_learning: Change Kconfig.sysbuild to fix configuration for NRF53 Seems not all sysbuild configurations needed was enabled for this sample. This changes configuration for nRF5340 so that overwrite only is set to default. So that `CONFIG_NRF53_MULTI_IMAGE_UPDATE` will be set. This fixes the configuration so that it's enabled correctly for how multi-image updates are supported. Fixes: NCSDK-28070 Signed-off-by: Sigvart Hovland --- applications/machine_learning/Kconfig.sysbuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/applications/machine_learning/Kconfig.sysbuild b/applications/machine_learning/Kconfig.sysbuild index eeec967b335..e1e697dec79 100644 --- a/applications/machine_learning/Kconfig.sysbuild +++ b/applications/machine_learning/Kconfig.sysbuild @@ -8,6 +8,10 @@ choice BOOTLOADER default BOOTLOADER_MCUBOOT if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP_NS endchoice +choice MCUBOOT_MODE + default MCUBOOT_MODE_OVERWRITE_ONLY if SOC_SERIES_NRF53X +endchoice + config NRF_DEFAULT_IPC_RADIO default y if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP_NS || BOARD_NRF54H20DK_NRF54H20_CPUAPP