From: Oleksandr Suvorov Date: Thu, 16 Sep 2021 12:03:36 +0000 (+0300) Subject: lib: rsa: fix dependency for SPL_RSA_VERIFY X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=d4f05b3198b68bc6e2c42b8d7e53d36a2fc9d52c;p=u-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 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.