From d8b83eaf0710e041569ef47bcc7edc6cdb42c32d Mon Sep 17 00:00:00 2001 From: John Durkop Date: Sat, 31 Oct 2020 23:32:07 -0700 Subject: [PATCH] Update symmetric only reference config to include config_psa.h Since the symmetric only reference config is utilizing PSA crypto library builds, the config file needs to included the new config_psa.h so that all the PSA feature macros are setup properly for the test. Signed-off-by: John Durkop --- configs/config-symmetric-only.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/config-symmetric-only.h b/configs/config-symmetric-only.h index 054cb9e15..f05a0d7cb 100644 --- a/configs/config-symmetric-only.h +++ b/configs/config-symmetric-only.h @@ -92,6 +92,8 @@ #define MBEDTLS_VERSION_C #define MBEDTLS_XTEA_C +#include "mbedtls/config_psa.h" + #include "check_config.h" #endif /* MBEDTLS_CONFIG_H */