Skip to content

Commit

Permalink
manifest: bootloader: mcuboot: Fix wrong use of if defined
Browse files Browse the repository at this point in the history
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 <ole.saether@nordicsemi.no>
  • Loading branch information
osaether committed Jul 11, 2023
1 parent 66d6a75 commit 69a607a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 69a607a

Please sign in to comment.