2018-09-11 01:44:12 +00:00
|
|
|
set(COMPONENT_SRCS "src/bootloader_clock.c"
|
|
|
|
"src/bootloader_common.c"
|
|
|
|
"src/bootloader_flash.c"
|
|
|
|
"src/bootloader_init.c"
|
|
|
|
"src/bootloader_random.c"
|
|
|
|
"src/bootloader_sha.c"
|
|
|
|
"src/bootloader_utility.c"
|
|
|
|
"src/efuse.c"
|
|
|
|
"src/esp_image_format.c"
|
|
|
|
"src/flash_encrypt.c"
|
|
|
|
"src/flash_partitions.c"
|
|
|
|
"src/flash_qio_mode.c"
|
|
|
|
"src/secure_boot.c"
|
|
|
|
"src/secure_boot_signatures.c")
|
2018-01-12 02:49:13 +00:00
|
|
|
|
|
|
|
if(${BOOTLOADER_BUILD})
|
2018-08-16 05:01:43 +00:00
|
|
|
set(COMPONENT_ADD_INCLUDEDIRS "include include_bootloader")
|
2018-03-22 06:27:10 +00:00
|
|
|
set(COMPONENT_REQUIRES)
|
|
|
|
set(COMPONENT_PRIV_REQUIRES spi_flash micro-ecc)
|
2018-01-12 02:49:13 +00:00
|
|
|
else()
|
2018-02-27 04:45:30 +00:00
|
|
|
set(COMPONENT_ADD_INCLUDEDIRS "include")
|
2018-08-16 05:01:43 +00:00
|
|
|
set(COMPONENT_PRIV_INCLUDEDIRS "include_bootloader")
|
2018-03-22 06:27:10 +00:00
|
|
|
set(COMPONENT_REQUIRES)
|
|
|
|
set(COMPONENT_PRIV_REQUIRES spi_flash mbedtls micro-ecc)
|
2018-01-12 02:49:13 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
register_component()
|