From: Simon Glass Date: Fri, 21 Oct 2022 00:23:16 +0000 (-0600) Subject: vpl: Allow signature verification X-Git-Tag: baikal/mips/sdk5.8.2~5^2~166^2~4 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=0b94f250caadd0959f7dfe115427bf6909fbf32d;p=uboot.git vpl: Allow signature verification Add the required Kconfig option so that signatures can be verified when loading a configuration. Signed-off-by: Simon Glass --- diff --git a/boot/Kconfig b/boot/Kconfig index 93344975a6..d5c582ebe8 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -320,7 +320,6 @@ config VPL_FIT_FULL_CHECK config VPL_FIT_SIGNATURE bool "Enable signature verification of FIT firmware within VPL" depends on VPL_DM - depends on VPL_LOAD_FIT || VPL_LOAD_FIT_FULL default y select FIT_SIGNATURE select VPL_FIT diff --git a/common/Kconfig b/common/Kconfig index 05c5e1cadb..21434c5cf1 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