Skip to content

Commit 10a877c

Browse files
Wouter Cappelleutzig
Wouter Cappelle
authored andcommitted
zephyr: fix compilation when no CONFIG_BOOT_ENCRYPTION_KEY_FILE
Fix compilation of zephyr builds when there is no CONFIG_BOOT_ENCRYPTION_KEY_FILE set. bug introduced by #1255 Signed-off-by: Wouter Cappelle <wouter.cappelle@crodeon.com>
1 parent 42e679d commit 10a877c

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

boot/zephyr/CMakeLists.txt

+14-15
Original file line numberDiff line numberDiff line change
@@ -305,22 +305,21 @@ if(NOT CONFIG_BOOT_SIGNATURE_KEY_FILE STREQUAL "")
305305
zephyr_library_sources(${GENERATED_PUBKEY})
306306
endif()
307307

308-
# CONF_FILE points to the KConfig configuration files of the bootloader.
309-
unset(CONF_DIR)
310-
foreach(filepath ${CONF_FILE})
311-
file(READ ${filepath} temp_text)
312-
string(FIND "${temp_text}" ${CONFIG_BOOT_ENCRYPTION_KEY_FILE} match)
313-
if(${match} GREATER_EQUAL 0)
314-
if(NOT DEFINED CONF_DIR)
315-
get_filename_component(CONF_DIR ${filepath} DIRECTORY)
316-
else()
317-
message(FATAL_ERROR "Encryption key file defined in multiple conf files")
308+
if(CONFIG_BOOT_ENCRYPTION_KEY_FILE AND NOT CONFIG_BOOT_ENCRYPTION_KEY_FILE STREQUAL "")
309+
# CONF_FILE points to the KConfig configuration files of the bootloader.
310+
unset(CONF_DIR)
311+
foreach(filepath ${CONF_FILE})
312+
file(READ ${filepath} temp_text)
313+
string(FIND "${temp_text}" ${CONFIG_BOOT_ENCRYPTION_KEY_FILE} match)
314+
if(${match} GREATER_EQUAL 0)
315+
if(NOT DEFINED CONF_DIR)
316+
get_filename_component(CONF_DIR ${filepath} DIRECTORY)
317+
else()
318+
message(FATAL_ERROR "Encryption key file defined in multiple conf files")
319+
endif()
318320
endif()
319-
endif()
320-
endforeach()
321-
321+
endforeach()
322322

323-
if(NOT CONFIG_BOOT_ENCRYPTION_KEY_FILE STREQUAL "")
324323
if(IS_ABSOLUTE ${CONFIG_BOOT_ENCRYPTION_KEY_FILE})
325324
set(KEY_FILE ${CONFIG_BOOT_ENCRYPTION_KEY_FILE})
326325
elseif((DEFINED CONF_DIR) AND
@@ -329,7 +328,7 @@ if(NOT CONFIG_BOOT_ENCRYPTION_KEY_FILE STREQUAL "")
329328
else()
330329
set(KEY_FILE ${MCUBOOT_DIR}/${CONFIG_BOOT_ENCRYPTION_KEY_FILE})
331330
endif()
332-
message("MCUBoot bootloader key file: ${KEY_FILE}")
331+
message("MCUBoot bootloader encryption key file: ${KEY_FILE}")
333332

334333
set(GENERATED_ENCKEY ${ZEPHYR_BINARY_DIR}/autogen-enckey.c)
335334
add_custom_command(

0 commit comments

Comments
 (0)