Lines Matching refs:image

31 …message(FATAL_ERROR "Must specify path to valid image signing key via MCUBOOT_SIGNING_KEY CMake op…
43 …ince mcuboot.encrypt-rsa is enabled, you must specify the path to a valid image encryption key via…
50 # Generate a signed image hex file for the given executable target.
81 # If encryption is enabled, generate unencrypted initial image which supports encryption.
114 COMMENT "Generating mcuboot ${IMAGE_TYPE} image for ${TARGET}..."
121 # Generate an initial image hex file for the given executable target.
122 # This initial image is what should be flashed to a blank device (along with the bootloader).
123 # A flash target (ninja flash-${TARGET}-initial-image) will also be created.
127 # If you wish to specify the base name of the initial image, pass that as the second argument to
128 # this function. Otherwise, it will default to $<target name>-initial-image
130 function(mcuboot_generate_initial_image TARGET) # optional 2nd arg: initial image base filename
133 …ITIAL_IMAGE_BASE_PATH ${CMAKE_CURRENT_BINARY_DIR}/$<TARGET_FILE_BASE_NAME:${TARGET}>-initial-image)
150 gen_upload_target(${TARGET}-initial-image ${INITIAL_IMAGE_BASE_PATH}.bin)
151 if(TARGET flash-${TARGET}-initial-image)
152 add_dependencies(flash-${TARGET}-initial-image ${TARGET})
157 # Generate an update image hex file for the given executable target.
158 # This image is what should be flashed to the secondary block device and passed to
167 # If you wish to specify the base name of the update image, pass that as the second argument to
168 # this function. Otherwise, it will default to $<target name>-update-image
170 function(mcuboot_generate_update_image TARGET) # optional 2nd arg: update image base filename
173 …UPDATE_IMAGE_BASE_PATH ${CMAKE_CURRENT_BINARY_DIR}/$<TARGET_FILE_BASE_NAME:${TARGET}>-update-image)