diff options
author | Simon Glass <sjg@chromium.org> | 2022-10-20 18:23:16 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-31 11:04:00 -0400 |
commit | 5981d611788adce88974687d4d561965d964fd08 (patch) | |
tree | 03a1872897fde56d12926c414756bf94ddb7369c /common | |
parent | 8de9896aa61579da62103aa06e9ab49006b3e5ab (diff) | |
download | u-boot-5981d611788adce88974687d4d561965d964fd08.zip u-boot-5981d611788adce88974687d4d561965d964fd08.tar.gz u-boot-5981d611788adce88974687d4d561965d964fd08.tar.bz2 |
vpl: Allow signature verification
Add the required Kconfig option so that signatures can be verified when
loading a configuration.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 05c5e1c..21434c5 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -1065,6 +1065,13 @@ config SPL_IMAGE_SIGN_INFO help Enable image_sign_info helper functions in SPL. +config VPL_IMAGE_SIGN_INFO + bool + select SHA1 + select SHA256 + help + Enable image_sign_info helper functions in SPL. + endif config FDT_SIMPLEFB |