fix(hal/test_apps): Fix build failure of the crypto hal test app for ESP32-P4

- Add bootloader_support component in its priv_requires as we use source files from mbedtls
This commit is contained in:
harshal.patil 2024-05-14 11:46:28 +05:30
parent ee8a9e8410
commit 1c21eb367e
No known key found for this signature in database
GPG Key ID: 5B5EC97C35B9A2E5
2 changed files with 2 additions and 1 deletions

View File

@ -119,6 +119,7 @@
/components/fatfs/ @esp-idf-codeowners/storage
/components/freertos/ @esp-idf-codeowners/system
/components/hal/ @esp-idf-codeowners/peripherals
/components/hal/test_apps/crypto/ @esp-idf-codeowners/peripherals @esp-idf-codeowners/security
/components/heap/ @esp-idf-codeowners/system
/components/http_parser/ @esp-idf-codeowners/app-utilities
/components/idf_test/ @esp-idf-codeowners/ci

View File

@ -68,7 +68,7 @@ if(CONFIG_SOC_SHA_SUPPORTED)
endif()
idf_component_register(SRCS ${srcs}
PRIV_REQUIRES efuse mbedtls esp_mm
PRIV_REQUIRES efuse mbedtls esp_mm bootloader_support
REQUIRES test_utils unity
WHOLE_ARCHIVE
PRIV_INCLUDE_DIRS "${priv_include_dirs}"