File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,13 @@ if(SB_CONFIG_DFU_MULTI_IMAGE_PACKAGE_BUILD)
17
17
sysbuild_get(${DEFAULT_IMAGE} _kernel_name IMAGE ${DEFAULT_IMAGE} VAR CONFIG_KERNEL_BIN_NAME KCONFIG)
18
18
19
19
list (APPEND dfu_multi_image_ids 0)
20
- list (APPEND dfu_multi_image_paths "${${DEFAULT_IMAGE} _image_dir}/zephyr/${${DEFAULT_IMAGE} _kernel_name}.signed.bin" )
20
+
21
+ if (SB_CONFIG_BOOT_ENCRYPTION)
22
+ list (APPEND dfu_multi_image_paths "${${DEFAULT_IMAGE} _image_dir}/zephyr/${${DEFAULT_IMAGE} _kernel_name}.signed.encrypted.bin" )
23
+ else ()
24
+ list (APPEND dfu_multi_image_paths "${${DEFAULT_IMAGE} _image_dir}/zephyr/${${DEFAULT_IMAGE} _kernel_name}.signed.bin" )
25
+ endif ()
26
+
21
27
list (APPEND dfu_multi_image_targets ${DEFAULT_IMAGE} _extra_byproducts ${dfu_multi_image_paths} )
22
28
endif ()
23
29
You can’t perform that action at this time.
0 commit comments