From c34fa81ea975f96996c37a867b4adf60977dfd43 Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Thu, 14 Mar 2024 09:24:38 +0000 Subject: [PATCH] Remove MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS from full This option removes a feature (buffer protection) so should not be in the full config. Signed-off-by: David Horstmann --- scripts/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/config.py b/scripts/config.py index 604f8a847d..c7563e4c9b 100755 --- a/scripts/config.py +++ b/scripts/config.py @@ -200,6 +200,7 @@ EXCLUDE_FROM_FULL = frozenset([ 'MBEDTLS_TEST_NULL_ENTROPY', # removes a feature 'MBEDTLS_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION', # influences the use of X.509 in TLS 'MBEDTLS_ZLIB_SUPPORT', # build dependency (libz) + 'MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS', # removes a feature ]) def is_seamless_alt(name):