From 1c21eb367e6219e2c056b1fb93ee588e4450b05d Mon Sep 17 00:00:00 2001 From: "harshal.patil" Date: Tue, 14 May 2024 11:46:28 +0530 Subject: [PATCH] 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 --- .gitlab/CODEOWNERS | 1 + components/hal/test_apps/crypto/main/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab/CODEOWNERS b/.gitlab/CODEOWNERS index 667cdcc772..e59da32928 100644 --- a/.gitlab/CODEOWNERS +++ b/.gitlab/CODEOWNERS @@ -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 diff --git a/components/hal/test_apps/crypto/main/CMakeLists.txt b/components/hal/test_apps/crypto/main/CMakeLists.txt index 6c1febef20..3f7585a3aa 100644 --- a/components/hal/test_apps/crypto/main/CMakeLists.txt +++ b/components/hal/test_apps/crypto/main/CMakeLists.txt @@ -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}"