From a2b238eee77cf9137db858618eb2881c53963330 Mon Sep 17 00:00:00 2001 From: Dominik Ermel Date: Tue, 26 Sep 2023 17:45:55 +0000 Subject: [PATCH] modules/MCUboot: Fix missing dependency The CONFIG_MCUBOOT_BOOTLOADER_MODE_DIRECT_XIP has been missing select of CONFIG_MCUBOOT_BOOTLOADER_MODE_HAS_NO_DOWNGRADE. Signed-off-by: Dominik Ermel --- modules/Kconfig.mcuboot | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/Kconfig.mcuboot b/modules/Kconfig.mcuboot index ab1dd44fbd5..1679bfeb8a9 100644 --- a/modules/Kconfig.mcuboot +++ b/modules/Kconfig.mcuboot @@ -192,6 +192,7 @@ config MCUBOOT_BOOTLOADER_MODE_DIRECT_XIP config MCUBOOT_BOOTLOADER_MODE_DIRECT_XIP_WITH_REVERT bool "MCUboot has been configured for DirectXIP with revert" select MCUBOOT_BOOTUTIL_LIB_FOR_DIRECT_XIP + select MCUBOOT_BOOTLOADER_MODE_HAS_NO_DOWNGRADE select MCUBOOT_BOOTLOADER_NO_DOWNGRADE help MCUboot expects slot0_partition and slot1_partition to exist in DT.