2018-01-11 21:49:13 -05:00
|
|
|
if(BOOTLOADER_BUILD)
|
2018-02-26 23:45:30 -05:00
|
|
|
# Bootloader needs SPIUnlock from this file, but doesn't
|
|
|
|
# need other parts of this component
|
2018-09-10 21:44:12 -04:00
|
|
|
set(COMPONENT_SRCS "spi_flash_rom_patch.c")
|
2018-03-22 02:27:10 -04:00
|
|
|
set(COMPONENT_PRIV_REQUIRES bootloader_support)
|
2018-01-11 21:49:13 -05:00
|
|
|
else()
|
2018-09-10 21:44:12 -04:00
|
|
|
set(COMPONENT_SRCS "cache_utils.c"
|
|
|
|
"flash_mmap.c"
|
|
|
|
"flash_ops.c"
|
|
|
|
"partition.c"
|
|
|
|
"spi_flash_rom_patch.c")
|
2018-03-22 02:27:10 -04:00
|
|
|
set(COMPONENT_PRIV_REQUIRES bootloader_support app_update)
|
2018-01-11 21:49:13 -05:00
|
|
|
endif()
|
|
|
|
|
|
|
|
set(COMPONENT_ADD_INCLUDEDIRS include)
|
2018-03-22 02:27:10 -04:00
|
|
|
set(COMPONENT_REQUIRES)
|
2018-01-11 21:49:13 -05:00
|
|
|
|
2018-04-17 22:57:45 -04:00
|
|
|
set(COMPONENT_ADD_LDFRAGMENTS linker.lf)
|
|
|
|
|
2018-01-11 21:49:13 -05:00
|
|
|
register_component()
|