diff options
author | Simon Glass <sjg@chromium.org> | 2022-02-28 12:08:31 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-06 14:03:17 -0400 |
commit | b7463f198da65257a3e0308f920ff8b3631c955b (patch) | |
tree | bbebbffc6b59dd8d38b1dfb8e84386afc9171336 /lib | |
parent | 8e6c12993199f08f61d12cddab7ad3f28db49832 (diff) | |
download | u-boot-b7463f198da65257a3e0308f920ff8b3631c955b.tar.gz |
Make ASYMMETRIC_KEY_TYPE depend on FIT_SIGNATURE
Add this dependency to avoid a build error if FIT_SIGNATURE is not
enabled.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/crypto/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/crypto/Kconfig b/lib/crypto/Kconfig index 509bc283112..1c04a7ec5f4 100644 --- a/lib/crypto/Kconfig +++ b/lib/crypto/Kconfig @@ -1,5 +1,6 @@ menuconfig ASYMMETRIC_KEY_TYPE bool "Asymmetric (public-key cryptographic) key Support" + depends on FIT_SIGNATURE help This option provides support for a key type that holds the data for the asymmetric keys used for public key cryptographic operations such |