commit | 04ab0a2699e025230fd2fed3dca163402be3b7c5 | [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 | f0de20e48485479ae1bc4ab9e95f823800dd577d [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.