mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
9c03f04769
Many components uses esptool_py_flash_target function, they all should explicitly requier the esptool_py component. Related to https://github.com/espressif/esp-idf/issues/6670
26 lines
905 B
CMake
26 lines
905 B
CMake
idf_component_register(PRIV_REQUIRES partition_table esptool_py)
|
|
|
|
# Do not generate flash file when building bootloader or is in early expansion of the build
|
|
if(BOOTLOADER_BUILD OR NOT CONFIG_APP_BUILD_BOOTLOADER)
|
|
return()
|
|
endif()
|
|
|
|
add_dependencies(bootloader partition_table_bin)
|
|
|
|
# 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()
|
|
|
|
esptool_py_custom_target(bootloader-flash bootloader "bootloader")
|
|
esptool_py_flash_target_image(bootloader-flash bootloader
|
|
${CONFIG_BOOTLOADER_OFFSET_IN_FLASH}
|
|
"${BOOTLOADER_BUILD_DIR}/bootloader.bin")
|
|
|
|
# Also attach an image to the project flash target
|
|
if(NOT CONFIG_SECURE_BOOT)
|
|
esptool_py_flash_target_image(flash bootloader
|
|
${CONFIG_BOOTLOADER_OFFSET_IN_FLASH}
|
|
"${BOOTLOADER_BUILD_DIR}/bootloader.bin")
|
|
endif()
|