From c8146741f18e2fa9e8f23b8b61cdb4fcc0af0618 Mon Sep 17 00:00:00 2001 From: Jordan Yates Date: Sat, 22 Nov 2025 12:10:47 +1000 Subject: [PATCH] boot: zephyr: select `IS_BOOTLOADER` MCUboot is a bootloader, select the `IS_BOOTLOADER` symbol from upstream. This allows Kconfig defaults to be modified for the bootloader use case without needing to touch the MCUboot repository. Signed-off-by: Jordan Yates --- boot/zephyr/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/boot/zephyr/Kconfig b/boot/zephyr/Kconfig index 044b3177b3..679ae2f523 100644 --- a/boot/zephyr/Kconfig +++ b/boot/zephyr/Kconfig @@ -16,6 +16,7 @@ config MCUBOOT select MPU_ALLOW_FLASH_WRITE if ARM_MPU select USE_DT_CODE_PARTITION if HAS_FLASH_LOAD_OFFSET select MCUBOOT_BOOTUTIL_LIB + select IS_BOOTLOADER config BOOT_USE_MBEDTLS bool