2021-03-08 03:46:37 -05:00
|
|
|
idf_component_register(PRIV_REQUIRES partition_table esptool_py)
|
2019-05-09 22:53:08 -04:00
|
|
|
|
2019-01-21 22:45:45 -05:00
|
|
|
# Do not generate flash file when building bootloader or is in early expansion of the build
|
2019-07-22 10:04:03 -04:00
|
|
|
if(BOOTLOADER_BUILD OR NOT CONFIG_APP_BUILD_BOOTLOADER)
|
2019-01-21 22:45:45 -05:00
|
|
|
return()
|
|
|
|
endif()
|
2018-01-11 21:49:13 -05:00
|
|
|
|
2020-04-07 23:37:02 -04:00
|
|
|
add_dependencies(bootloader partition_table_bin)
|
|
|
|
|
2020-02-24 14:51:41 -05: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 00:53:46 -04:00
|
|
|
|
|
|
|
esptool_py_custom_target(bootloader-flash bootloader "bootloader")
|
2020-11-10 01:51:08 -05:00
|
|
|
esptool_py_flash_target_image(bootloader-flash bootloader
|
|
|
|
${CONFIG_BOOTLOADER_OFFSET_IN_FLASH}
|
|
|
|
"${BOOTLOADER_BUILD_DIR}/bootloader.bin")
|
2019-12-19 20:55:02 -05:00
|
|
|
|
|
|
|
# Also attach an image to the project flash target
|
2020-02-24 14:51:41 -05:00
|
|
|
if(NOT CONFIG_SECURE_BOOT)
|
2020-11-10 01:51:08 -05:00
|
|
|
esptool_py_flash_target_image(flash bootloader
|
|
|
|
${CONFIG_BOOTLOADER_OFFSET_IN_FLASH}
|
|
|
|
"${BOOTLOADER_BUILD_DIR}/bootloader.bin")
|
|
|
|
endif()
|