diff options
| author | Paul-Erwan Rio <[email protected]> | 2023-12-21 08:26:11 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-01-11 22:09:11 -0500 |
| commit | 03e598263e3878b6f5d58f5525577903edadc644 (patch) | |
| tree | 22ac5da5ccb9298e7046389802af067937c23ac9 /tools/Kconfig | |
| parent | b646a1053fda188bfb054acc98aa73bb23b158b1 (diff) | |
tools: fix build without LIBCRYPTO support
Commit cb9faa6f98ae ("tools: Use a single target-independent config to
enable OpenSSL") introduced a target-independent configuration to build
crypto features in host tools.
But since commit 2c21256b27d7 ("hash: Use Kconfig to enable hashing in
host tools and SPL") the build without OpenSSL is broken, due to FIT
signature/encryption features. Add missing conditional compilation
tokens to fix this.
Signed-off-by: Paul-Erwan Rio <[email protected]>
Tested-by: Alexander Dahl <[email protected]>
Cc: Simon Glass <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'tools/Kconfig')
| -rw-r--r-- | tools/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/Kconfig b/tools/Kconfig index f8632cd59d0..f01ed783e6f 100644 --- a/tools/Kconfig +++ b/tools/Kconfig @@ -51,6 +51,7 @@ config TOOLS_FIT_RSASSA_PSS Support the rsassa-pss signature scheme in the tools builds config TOOLS_FIT_SIGNATURE + depends on TOOLS_LIBCRYPTO def_bool y help Enable signature verification of FIT uImages in the tools builds |
