From: Oleksandr Suvorov Date: Thu, 16 Sep 2021 12:03:36 +0000 (+0300) Subject: lib: rsa: fix dependency for SPL_RSA_VERIFY X-Git-Tag: v2022.01~100^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d4f05b3198b68bc6e2c42b8d7e53d36a2fc9d52c;hp=a3423b3f2341e45b56c78e5bc70b2e63dd7583e0;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/lib/rsa/Kconfig b/lib/rsa/Kconfig index a90d67e..cf802a6 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.