Skip to content

Commit 11328d3

Browse files
committed
cmake: sybuild: partition_manager: Fix wrongly using all images
Fixes wrongly using all images for the network core when it should instead only use those dedicated to the network core Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
1 parent b6778b7 commit 11328d3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cmake/sysbuild/partition_manager.cmake

+5-1
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,11 @@ foreach (image ${IMAGES})
436436
list(APPEND header_files ${${image}_binary_dir}/${generated_path}/pm_config.h)
437437
get_property(domain_app GLOBAL PROPERTY DOMAIN_APP_${domain})
438438
if(NOT DEFINED domain OR "${domain_app}" STREQUAL "${image}")
439-
list(APPEND input_files ${${image}_input_files})
439+
if(NOT DEFINED domain)
440+
list(APPEND input_files ${${image}_input_files})
441+
else()
442+
list(APPEND ${domain}_input_files ${${image}_input_files})
443+
endif()
440444
endif()
441445
endif()
442446
endforeach()

0 commit comments

Comments
 (0)