From mboxrd@z Thu Jan 1 00:00:00 1970 From: Klaus Heinrich Kiwi Date: Tue, 9 Feb 2021 15:41:53 -0300 Subject: [PATCH 1/3] Kconfig: SPL_FIT_SIGNATURE selects FIT_SIGNATURE In-Reply-To: <20210209184155.1306281-1-klaus@linux.vnet.ibm.com> References: <20210209184155.1306281-1-klaus@linux.vnet.ibm.com> Message-ID: <20210209184155.1306281-2-klaus@linux.vnet.ibm.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 --- common/Kconfig.boot | 1 + 1 file changed, 1 insertion(+) diff --git a/common/Kconfig.boot b/common/Kconfig.boot index 5eaabdfc27..7a0f7d9501 100644 --- a/common/Kconfig.boot +++ b/common/Kconfig.boot @@ -162,6 +162,7 @@ config SPL_FIT_PRINT 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 -- 2.25.1