projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3423b3
)
lib: rsa: fix dependency for SPL_RSA_VERIFY
author
Oleksandr Suvorov
<oleksandr.suvorov@foundries.io>
Thu, 16 Sep 2021 12:03:36 +0000
(15:03 +0300)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/lib/rsa/Kconfig
b/lib/rsa/Kconfig
index
a90d67e
..
cf802a6
100644
(file)
--- 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.