]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
lib: rsa: fix dependency for SPL_RSA_VERIFY
authorOleksandr Suvorov <oleksandr.suvorov@foundries.io>
Thu, 16 Sep 2021 12:03:36 +0000 (15:03 +0300)
committerTom Rini <trini@konsulko.com>
Wed, 6 Oct 2021 13:15:14 +0000 (09:15 -0400)
SPL_RSA_VERIFY requires SPL_RSA to be enabled. Add correct
dependency.

Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
lib/rsa/Kconfig

index a90d67e5a87b3c1af8f4c07d95bf3263ab0bf1d2..cf802a6d40acda1f9b59f09a9c845307cbf951f8 100644 (file)
@@ -20,6 +20,7 @@ config SPL_RSA
 
 config SPL_RSA_VERIFY
        bool
+       depends on SPL_RSA
        help
          Add RSA signature verification support in SPL.