2021-03-08 08:46:37 +00:00
|
|
|
idf_component_register(PRIV_REQUIRES partition_table esptool_py)
|
2019-05-10 02:53:08 +00:00
|
|
|
|
2019-01-22 03:45:45 +00:00
|
|
|
# Do not generate flash file when building bootloader or is in early expansion of the build
|
2019-07-22 14:04:03 +00:00
|
|
|
if(BOOTLOADER_BUILD OR NOT CONFIG_APP_BUILD_BOOTLOADER)
|
2019-01-22 03:45:45 +00:00
|
|
|
return()
|
|
|
|
endif()
|
2018-01-12 02:49:13 +00:00
|
|
|
|
2020-04-08 03:37:02 +00:00
|
|
|
add_dependencies(bootloader partition_table_bin)
|
|
|
|
|
2020-02-24 19:51:41 +00:00
|
|
|
# When secure boot is enabled, do not flash bootloader along with invocation of `idf.py flash`
|
|
|
|
if(NOT CONFIG_SECURE_BOOT)
|
|
|
|
set(flash_bootloader FLASH_IN_PROJECT)
|
|
|
|
endif()
|
2019-06-14 04:53:46 +00:00
|
|
|
|
|
|
|
esptool_py_custom_target(bootloader-flash bootloader "bootloader")
|
2020-11-10 06:51:08 +00:00
|
|
|
esptool_py_flash_target_image(bootloader-flash bootloader
|
|
|
|
${CONFIG_BOOTLOADER_OFFSET_IN_FLASH}
|
|
|
|
"${BOOTLOADER_BUILD_DIR}/bootloader.bin")
|
2019-12-20 01:55:02 +00:00
|
|
|
|
|
|
|
# Also attach an image to the project flash target
|
2020-02-24 19:51:41 +00:00
|
|
|
if(NOT CONFIG_SECURE_BOOT)
|
2020-11-10 06:51:08 +00:00
|
|
|
esptool_py_flash_target_image(flash bootloader
|
|
|
|
${CONFIG_BOOTLOADER_OFFSET_IN_FLASH}
|
|
|
|
"${BOOTLOADER_BUILD_DIR}/bootloader.bin")
|
|
|
|
endif()
|