From 3238139080dd61c4942336dc8c3bc74da486399e Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Fri, 27 Dec 2024 11:49:56 +0000 Subject: [PATCH 1/2] manifest: Update sdk-mcuboot Updates MCUboot to include support for encrypted compressed images and removes restriction for single image Signed-off-by: Jamie McCrae --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index 2e17d811205..bb687c5004c 100644 --- a/west.yml +++ b/west.yml @@ -130,7 +130,7 @@ manifest: compare-by-default: true - name: mcuboot repo-path: sdk-mcuboot - revision: b82206c15fff357c151c24bf97c99c4348d14a46 + revision: pull/391/head path: bootloader/mcuboot - name: qcbor url: https://github.com/laurencelundblade/QCBOR From 54485b7c6d3d848ebfb3fc52c68e2d803fb8ff74 Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Fri, 27 Dec 2024 11:50:30 +0000 Subject: [PATCH 2/2] sysbuild: mcuboot: Remove some compressed update restrictions Removes restrictions requiring a single update image and without encryption support Signed-off-by: Jamie McCrae --- sysbuild/Kconfig.mcuboot | 2 -- 1 file changed, 2 deletions(-) diff --git a/sysbuild/Kconfig.mcuboot b/sysbuild/Kconfig.mcuboot index 3a68ef14ac9..62842e5ffc6 100644 --- a/sysbuild/Kconfig.mcuboot +++ b/sysbuild/Kconfig.mcuboot @@ -47,8 +47,6 @@ endif # MCUBOOT_HARDWARE_DOWNGRADE_PREVENTION config MCUBOOT_COMPRESSED_IMAGE_SUPPORT bool "Compressed image support" depends on MCUBOOT_MODE_OVERWRITE_ONLY - depends on MCUBOOT_UPDATEABLE_IMAGES = "1" - depends on !BOOT_ENCRYPTION help When enabled, supports loading compressed images using LZMA2 to the secondary slot which will then be decompressed and loaded to the primary slot.