Skip to content

Commit

Permalink
cmake: sysbuild: nrf700x: Fix not configuring string for key
Browse files Browse the repository at this point in the history
Fixes the key variable not being expanded for nrf700x image
signing

Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
  • Loading branch information
nordicjm committed Aug 23, 2024
1 parent 3baff10 commit d49ccff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmake/sysbuild/image_signing_nrf700x.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
function(nrf7x_signing_tasks input output_hex output_bin dependencies)
set(keyfile "${SB_CONFIG_BOOT_SIGNATURE_KEY_FILE}")
set(keyfile_enc "${SB_CONFIG_BOOT_ENCRYPTION_KEY_FILE}")
string(CONFIGURE "${keyfile}" keyfile)
string(CONFIGURE "${keyfile_enc}" keyfile_enc)

if(NOT "${SB_CONFIG_BOOT_SIGNATURE_TYPE_NONE}")
# Check for misconfiguration.
Expand Down

0 comments on commit d49ccff

Please sign in to comment.