Skip to content

Commit 156f388

Browse files
committed
cmake: sysbuild: b0_mcuboot_signing: Fix ROM fixed address
Fixes this address not being an absolute value (which impacted network core images for nRF5340) Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
1 parent 1039651 commit 156f388

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmake/sysbuild/b0_mcuboot_signing.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function(ncs_secure_boot_mcuboot_sign application bin_files signed_targets prefi
3838
# Get the partition node and pick size from it.
3939
dt_chosen(code_partition_path PROPERTY "zephyr,code-partition" TARGET ${application})
4040
dt_partition_size(slot_size PATH "${code_partition_path}" TARGET ${application} REQUIRED)
41-
dt_partition_addr(slot_address PATH "${code_partition_path}" TARGET ${application} REQUIRED)
41+
dt_partition_addr(slot_address PATH "${code_partition_path}" TARGET ${application} REQUIRED ABSOLUTE)
4242
# Header size is picked from the image that is being signed.
4343
sysbuild_get(header_size IMAGE ${DEFAULT_IMAGE} VAR CONFIG_ROM_START_OFFSET KCONFIG)
4444

0 commit comments

Comments
 (0)