diff options
author | Oleksandr Suvorov <oleksandr.suvorov@foundries.io> | 2021-09-16 15:03:36 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-10-06 09:15:14 -0400 |
commit | d4f05b3198b68bc6e2c42b8d7e53d36a2fc9d52c (patch) | |
tree | 759cd0eb6322ea137473bc7e19612abf6b8ed753 /lib/rsa | |
parent | a3423b3f2341e45b56c78e5bc70b2e63dd7583e0 (diff) | |
download | u-boot-d4f05b3198b68bc6e2c42b8d7e53d36a2fc9d52c.tar.gz u-boot-d4f05b3198b68bc6e2c42b8d7e53d36a2fc9d52c.tar.bz2 u-boot-d4f05b3198b68bc6e2c42b8d7e53d36a2fc9d52c.zip |
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>
Diffstat (limited to 'lib/rsa')
-rw-r--r-- | lib/rsa/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
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. |