From 86dede517741011ccd65c1946963add19580f6ca Mon Sep 17 00:00:00 2001 From: Ronald Cron Date: Mon, 17 Jun 2024 13:40:07 +0200 Subject: [PATCH] Update crypto header directories Due to the move of the Mbed TLS crypto headers to tf-psa-crypto in development, update the list of crypto header directories. Signed-off-by: Ronald Cron --- scripts/mbedtls_framework/psa_storage.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/mbedtls_framework/psa_storage.py b/scripts/mbedtls_framework/psa_storage.py index 3f0a3711d..4c1f070c1 100644 --- a/scripts/mbedtls_framework/psa_storage.py +++ b/scripts/mbedtls_framework/psa_storage.py @@ -46,7 +46,8 @@ class Expr: # build system to build its crypto library. When it does, the first # case can just be removed. if os.path.isdir('tf-psa-crypto'): - includes = ['include', 'tf-psa-crypto/include'] + includes = ['include', 'tf-psa-crypto/include', + 'tf-psa-crypto/drivers/builtin/include'] else: includes = ['include']