1idf_component_register(SRCS "bootloader_start.c" 2 REQUIRES bootloader bootloader_support) 3 4idf_build_get_property(target IDF_TARGET) 5set(scripts "ld/${target}/bootloader.ld") 6 7list(APPEND scripts "ld/${target}/bootloader.rom.ld") 8target_linker_script(${COMPONENT_LIB} INTERFACE "${scripts}") 9 10target_link_libraries(${COMPONENT_LIB} INTERFACE "-u bootloader_hooks_include") 11