From 03ed5dc17c49535b6c8b35205546e95625321d83 Mon Sep 17 00:00:00 2001 From: Stefan Gloor Date: Fri, 14 Nov 2025 15:58:35 +0100 Subject: [PATCH] boot: zephyr: deprecate MBEDTLS_MD Please use MBEDTLS_MD_C instead. See https://github.com/zephyrproject-rtos/zephyr/pull/92081 This gets rid of the "Deprecated symbol MBEDTLS_MD is enabled." warning when building MCUboot with Zephyr. Signed-off-by: Stefan Gloor --- boot/zephyr/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/zephyr/Kconfig b/boot/zephyr/Kconfig index 044b3177b3..2f7e25da05 100644 --- a/boot/zephyr/Kconfig +++ b/boot/zephyr/Kconfig @@ -253,7 +253,7 @@ config BOOT_SIGNATURE_TYPE_RSA select BOOT_USE_MBEDTLS select MBEDTLS select MBEDTLS_ASN1_PARSE_C if MBEDTLS_BUILTIN - select MBEDTLS_MD if MBEDTLS_BUILTIN + select MBEDTLS_MD_C if MBEDTLS_BUILTIN select MBEDTLS_RSA_C if MBEDTLS_BUILTIN select MBEDTLS_PKCS1_V15 if MBEDTLS_BUILTIN select MBEDTLS_PKCS1_V21 if MBEDTLS_BUILTIN