commit | 07126ffb4b42699f2729e7e22b95f25a5570b7e1 | [log] [tgz] |
---|---|---|
author | Yann Gautier <yann.gautier@st.com> | Wed Nov 15 18:35:26 2023 +0100 |
committer | Yann Gautier <yann.gautier@st.com> | Fri Jun 28 20:06:09 2024 +0200 |
tree | c24d8d171b20f4d347d87dfcf58b2e08f3f1779d | |
parent | a353e39e8d247905d24646d74d48617c31cadc7c [diff] [blame] |
build(mbedtls): add deprecation notice Add a deprecation notice for building TF-A with mbedtls-2.x This was notified earlier in TF-A mailing list: https://lists.trustedfirmware.org/archives/list/tf-a@lists.trustedfirmware.org/message/YDPOPASMGEQBCOI5TKUSD3V3J75NAT7A/ We will be removing support to build TF-A with mbedtls-2.x after TF-A 2.10 release. Change-Id: I669b423ee9af9f5c5255fce370413fffaf38e8eb Signed-off-by: Govindraj Raja <govindraj.raja@arm.com> (cherry picked from commit 267c106f02e6996071985adbe695406a4978e97f)
diff --git a/drivers/auth/mbedtls/mbedtls_common.mk b/drivers/auth/mbedtls/mbedtls_common.mk index 63871a4..f157acb 100644 --- a/drivers/auth/mbedtls/mbedtls_common.mk +++ b/drivers/auth/mbedtls/mbedtls_common.mk
@@ -21,7 +21,8 @@ # Specify mbed TLS configuration file ifeq (${MBEDTLS_MAJOR}, 2) - MBEDTLS_CONFIG_FILE ?= "<drivers/auth/mbedtls/mbedtls_config-2.h>" + $(info Deprecation Notice: Please migrate to Mbedtls version 3.x (refer to TF-A documentation for the exact version number)) + MBEDTLS_CONFIG_FILE ?= "<drivers/auth/mbedtls/mbedtls_config-2.h>" else ifeq (${MBEDTLS_MAJOR}, 3) MBEDTLS_CONFIG_FILE ?= "<drivers/auth/mbedtls/mbedtls_config-3.h>" endif