diff options
author | Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com> | 2021-02-09 15:41:53 -0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-02-24 16:51:48 -0500 |
commit | 6ce28132b88a95eb6d4e67c594270f0825d6dad8 (patch) | |
tree | d62e0ad712ca0d7cb3ba9d2668c237b3e431e54c /common/Kconfig.boot | |
parent | c65365d7add59b35a4fdde5807a7afb5503e7a40 (diff) | |
download | u-boot-6ce28132b88a95eb6d4e67c594270f0825d6dad8.tar.gz u-boot-6ce28132b88a95eb6d4e67c594270f0825d6dad8.tar.bz2 u-boot-6ce28132b88a95eb6d4e67c594270f0825d6dad8.zip |
Kconfig: SPL_FIT_SIGNATURE selects FIT_SIGNATURE
Selecting SPL_FIT_SIGNATURE (without selecting U-boot proper
verified boot first) breaks the build due to
CONFIG_FIT_SIGNATURE_MAX_SIZE being undefined, in addition to Kconfig
warnings on RSA and IMAGE_SIGN_INFO unmet dependencies.
Signed-off-by: Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com>
Diffstat (limited to 'common/Kconfig.boot')
-rw-r--r-- | common/Kconfig.boot | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Kconfig.boot b/common/Kconfig.boot index 7532e55edb..62dc410266 100644 --- a/common/Kconfig.boot +++ b/common/Kconfig.boot @@ -181,6 +181,7 @@ config SPL_FIT_FULL_CHECK config SPL_FIT_SIGNATURE bool "Enable signature verification of FIT firmware within SPL" depends on SPL_DM + select FIT_SIGNATURE select SPL_FIT select SPL_CRYPTO_SUPPORT select SPL_HASH_SUPPORT |