From 1557daeec07d236a4a954329260d773992c7e78d Mon Sep 17 00:00:00 2001 From: Ronald Cron Date: Fri, 15 Nov 2024 15:36:12 +0100 Subject: [PATCH] Keep going if MBEDTLS_PSA_CRYPTO_CONFIG setting fails Signed-off-by: Ronald Cron --- scripts/all-helpers.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/all-helpers.sh b/scripts/all-helpers.sh index cdb3f4e16..e4c3c1b29 100644 --- a/scripts/all-helpers.sh +++ b/scripts/all-helpers.sh @@ -68,7 +68,10 @@ helper_libtestdriver1_adjust_config() { fi # Enable PSA-based config (necessary to use drivers) - scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG + # The configuration option has been removed for 4.0. While the project and + # branch detection shell in shell work is not completed, just ignore the + # failure to set MBEDTLS_PSA_CRYPTO_CONFIG. + scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG || true # Dynamic secure element support is a deprecated feature and needs to be disabled here. # This is done to have the same form of psa_key_attributes_s for libdriver and library.