summaryrefslogtreecommitdiff
path: root/lib/fconf
diff options
context:
space:
mode:
authorManish V Badarkhe <manish.badarkhe@arm.com>2022-01-27 13:50:23 +0000
committerManish V Badarkhe <manish.badarkhe@arm.com>2022-03-01 19:08:11 +0100
commit033f61370af38c6397963075ac2477f3192714b9 (patch)
tree6f2e0440c4bf7de5783df920927b7ae261438578 /lib/fconf
parentc73cb40033fc22e130756dbb5ee8e282f29b729a (diff)
downloadarm-trusted-firmware-033f61370af38c6397963075ac2477f3192714b9.tar.gz
refactor(mbedtls): allow platform to specify their config file
Common mbedTLS implementation include the fixed configuration file of mbedTLS and that does not gives flexilibility to the platform to include their own mbedTLS configuration. Hence changes are done so that platform can include their own mbedTLS configuration file. Signed-off-by: Lucian Paul-Trifu <lucian.paul-trifu@arm.com> Signed-off-by: Manish V Badarkhe <manish.badarkhe@arm.com> Change-Id: I04546589f67299e26b0a6a6e151cdf1fdb302607
Diffstat (limited to 'lib/fconf')
-rw-r--r--lib/fconf/fconf_cot_getter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fconf/fconf_cot_getter.c b/lib/fconf/fconf_cot_getter.c
index adfa5341c..ae59d8c96 100644
--- a/lib/fconf/fconf_cot_getter.c
+++ b/lib/fconf/fconf_cot_getter.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020, Arm Limited. All rights reserved.
+ * Copyright (c) 2020-2022, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -8,7 +8,7 @@
#include <stddef.h>
#include <common/fdt_wrappers.h>
-#include <drivers/auth/mbedtls/mbedtls_config.h>
+#include MBEDTLS_CONFIG_FILE
#include <drivers/auth/auth_mod.h>
#include <lib/fconf/fconf.h>
#include <lib/object_pool.h>