From 8cee3550955bb88ed84b6cfa1e1549a416042cbd Mon Sep 17 00:00:00 2001 From: Xudong Zheng <7pkvm5aw@slicealias.com> Date: Tue, 26 Dec 2023 21:28:38 -0500 Subject: [PATCH] zephyr: kconfig: make MBEDTLS_PROMPTLESS depend on MBEDTLS This addresses compilation error when MBEDTLS module is not present. Signed-off-by: Xudong Zheng <7pkvm5aw@slicealias.com> --- boot/zephyr/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/zephyr/Kconfig b/boot/zephyr/Kconfig index 2cfd7b86c..baa807c56 100644 --- a/boot/zephyr/Kconfig +++ b/boot/zephyr/Kconfig @@ -30,7 +30,7 @@ config BOOT_USE_TINYCRYPT # When building for ECDSA, we use our own copy of mbedTLS, so the # Zephyr one must not be enabled or the MBEDTLS_CONFIG_FILE macros # will collide. - select MBEDTLS_PROMPTLESS + select MBEDTLS_PROMPTLESS if ZEPHYR_MBEDTLS_MODULE help Use TinyCrypt for crypto primitives.