feat(esp_tee): Support for ESP-TEE - mbedtls component

This commit is contained in:
Laukik Hase
2024-07-01 16:07:59 +05:30
parent ba2af7f611
commit 05e31e5148
8 changed files with 348 additions and 29 deletions
+10 -5
View File
@@ -1,12 +1,17 @@
idf_build_get_property(idf_target IDF_TARGET)
idf_build_get_property(python PYTHON)
idf_build_get_property(esp_tee_build ESP_TEE_BUILD)
if(esp_tee_build)
include(${COMPONENT_DIR}/esp_tee/esp_tee_mbedtls.cmake)
return()
endif()
if(NOT ${IDF_TARGET} STREQUAL "linux")
set(priv_requires soc esp_hw_support)
if(NOT BOOTLOADER_BUILD)
list(APPEND priv_requires esp_pm)
endif()
set(priv_requires soc esp_hw_support)
if(NOT BOOTLOADER_BUILD)
list(APPEND priv_requires esp_pm)
endif()
endif()
set(mbedtls_srcs "")