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 a90d67e..cf802a6 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.