Skip to content

Commit

Permalink
fix(hal/test_apps): Fix build failure of the crypto hal test app for …
Browse files Browse the repository at this point in the history
…ESP32-P4

- Add bootloader_support component in its priv_requires as we use source files from mbedtls
  • Loading branch information
Harshal5 committed May 14, 2024
1 parent ee8a9e8 commit 1c21eb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitlab/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion components/hal/test_apps/crypto/main/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 1c21eb3

Please sign in to comment.