secure boot: In Reflashable mode, make sure the bootloader digest updates

... whenever the bootloader.bin is updated
This commit is contained in:
Angus Gratton 2019-10-29 12:50:41 +11:00 committed by Angus Gratton
parent e8881352c5
commit e34bb7460f

View file

@ -75,7 +75,8 @@ if(CONFIG_SECURE_BOOTLOADER_REFLASHABLE)
add_custom_command(OUTPUT "${bootloader_digest_bin}"
COMMAND ${CMAKE_COMMAND} -E echo "DIGEST ${bootloader_digest_bin}"
COMMAND ${ESPSECUREPY} digest_secure_bootloader --keyfile "${secure_bootloader_key}"
-o "${bootloader_digest_bin}" "${CMAKE_BINARY_DIR}/bootloader.bin"
-o "${bootloader_digest_bin}" "${CMAKE_BINARY_DIR}/bootloader.bin"
MAIN_DEPENDENCY gen_project_binary
DEPENDS gen_secure_bootloader_key gen_project_binary
VERBATIM)