We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b20fcb5 commit c3cee62Copy full SHA for c3cee62
scripts/all-helpers.sh
@@ -68,9 +68,10 @@ helper_libtestdriver1_adjust_config() {
68
fi
69
70
# Enable PSA-based config (necessary to use drivers)
71
- if in_mbedtls_repo && in_3_6_branch; then
72
- scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG
73
- fi
+ # 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.
74
+ scripts/config.py set MBEDTLS_PSA_CRYPTO_CONFIG || true
75
76
# Dynamic secure element support is a deprecated feature and needs to be disabled here.
77
# This is done to have the same form of psa_key_attributes_s for libdriver and library.
0 commit comments