commit | d4f05b3198b68bc6e2c42b8d7e53d36a2fc9d52c | [log] [tgz] |
---|---|---|
author | Oleksandr Suvorov <oleksandr.suvorov@foundries.io> | Thu Sep 16 15:03:36 2021 +0300 |
committer | Tom Rini <trini@konsulko.com> | Wed Oct 06 09:15:14 2021 -0400 |
tree | 759cd0eb6322ea137473bc7e19612abf6b8ed753 | |
parent | a3423b3f2341e45b56c78e5bc70b2e63dd7583e0 [diff] |
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 <oleksandr.suvorov@foundries.io>
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_VERIFY bool + depends on SPL_RSA help Add RSA signature verification support in SPL.