diff options
| author | Tom Rini <[email protected]> | 2022-06-10 23:03:09 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-07-07 09:29:08 -0400 |
| commit | b340199f828e7d57945785b698ff97469972d1ca (patch) | |
| tree | 117ba774591d068ff037e4a2e6b1bca39d9fc037 /lib/ecdsa | |
| parent | abba59f1155aa45daf37c59e248164387482a3c4 (diff) | |
spl: Ensure all SPL symbols in Kconfig have some SPL dependency
Tighten up symbol dependencies in a number of places. Ensure that a SPL
specific option has at least a direct dependency on SPL. In places
where it's clear that we depend on something more specific, use that
dependency instead. This means in a very small number of places we can
drop redundant dependencies.
Reported-by: Pali Rohár <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'lib/ecdsa')
| -rw-r--r-- | lib/ecdsa/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ecdsa/Kconfig b/lib/ecdsa/Kconfig index a95c4ff581f..5c3d67d8144 100644 --- a/lib/ecdsa/Kconfig +++ b/lib/ecdsa/Kconfig @@ -17,6 +17,7 @@ config ECDSA_VERIFY config SPL_ECDSA_VERIFY bool "Enable ECDSA verification support in SPL" + depends on SPL help Allow ECDSA signatures to be recognized and verified in SPL. |
