From d4f05b3198b68bc6e2c42b8d7e53d36a2fc9d52c Mon Sep 17 00:00:00 2001 From: Oleksandr Suvorov Date: Thu, 16 Sep 2021 15:03:36 +0300 Subject: [PATCH] lib: rsa: fix dependency for SPL_RSA_VERIFY SPL_RSA_VERIFY requires SPL_RSA to be enabled. Add correct dependency. Signed-off-by: Oleksandr Suvorov --- lib/rsa/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/rsa/Kconfig b/lib/rsa/Kconfig index a90d67e5a8..cf802a6d40 100644 --- a/lib/rsa/Kconfig +++ b/lib/rsa/Kconfig @@ -20,6 +20,7 @@ config SPL_RSA config SPL_RSA_VERIFY bool + depends on SPL_RSA help Add RSA signature verification support in SPL. -- 2.39.5