Merge branch 'refactor/create_esp_hal_security' into 'master'

refactor: Created esp_hal_security component

Closes IDF-14086

See merge request espressif/esp-idf!44253
This commit is contained in:
morris
2026-01-22 11:56:46 +08:00
250 changed files with 4014 additions and 3668 deletions
+3 -3
View File
@@ -31,15 +31,15 @@ list(APPEND srcs "src/esp_efuse_api.c"
if(non_os_build)
idf_component_register(SRCS "${srcs}"
PRIV_REQUIRES bootloader_support soc spi_flash
PRIV_REQUIRES bootloader_support soc spi_flash esp_hal_security
INCLUDE_DIRS "${include_dirs}"
PRIV_INCLUDE_DIRS "${private_include}")
else()
list(APPEND srcs "src/esp_efuse_startup.c")
if(${target} STREQUAL "linux")
set(priv_requires soc spi_flash esp_system esp_partition)
set(priv_requires soc spi_flash esp_system esp_partition esp_hal_security)
else()
set(priv_requires bootloader_support soc spi_flash esp_system esp_partition esp_app_format)
set(priv_requires bootloader_support soc spi_flash esp_system esp_partition esp_app_format esp_hal_security)
endif()
idf_component_register(SRCS "${srcs}"
PRIV_REQUIRES "${priv_requires}"