From 69a607aa59b25cea16aff89c9dc95ff4aae43084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20S=C3=A6ther?= Date: Tue, 20 Jun 2023 10:34:13 +0200 Subject: [PATCH] manifest: bootloader: mcuboot: Fix wrong use of if defined MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The file nrf_cleanup.c has "#if defined(USE_PARTITION_MANAGER)" Which is true even if USE_PARTITION_MANAGER=n. This must be changed to "#if USE_PARTITION_MANAGER" for correct behaviour. Ref: NCSIDB-987 Signed-off-by: Ole Sæther --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index 40ab6c032bd4..1d9d5eb62030 100644 --- a/west.yml +++ b/west.yml @@ -127,7 +127,7 @@ manifest: compare-by-default: false - name: mcuboot repo-path: sdk-mcuboot - revision: 4e84f31172c5120bb9d300603d28ff2759d7b640 + revision: 823fd369c1430b50d263ccd6fbcf98bdd44001ba path: bootloader/mcuboot - name: qcbor url: https://github.com/laurencelundblade/QCBOR.git