mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
bootloader: fix external 32k xtal not found error
This commit is contained in:
parent
cfdd7f0f22
commit
6ef2a7def0
@ -27,7 +27,8 @@ set(COMPONENTS
|
||||
spi_flash
|
||||
micro-ecc
|
||||
main
|
||||
efuse)
|
||||
efuse
|
||||
esp_system)
|
||||
set(BOOTLOADER_BUILD 1)
|
||||
include("${IDF_PATH}/tools/cmake/project.cmake")
|
||||
set(common_req log esp_rom esp_common esp_hw_support hal)
|
||||
|
@ -1,3 +1,9 @@
|
||||
if(BOOTLOADER_BUILD)
|
||||
# Bootloader relies on some Kconfig options defined in esp_system.
|
||||
idf_component_register()
|
||||
return()
|
||||
endif()
|
||||
|
||||
idf_component_register(SRCS "intr_alloc.c"
|
||||
"esp_async_memcpy.c"
|
||||
"panic.c"
|
||||
|
Loading…
Reference in New Issue
Block a user