From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eran Matityahu Date: Wed, 28 Feb 2018 09:51:34 +0200 Subject: [U-Boot] [PATCH 1/2] mx7_common: Fix SPL compilation with secure boot support enabled Message-ID: <20180228075134.GA35113@ubuntu> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The SPL MISC driver support must be enabled, so that the driver can use OTP fuse to check if HAB is enabled. Signed-off-by: Eran Matityahu --- include/configs/mx7_common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/mx7_common.h b/include/configs/mx7_common.h index defb38c..6ebf2e1 100644 --- a/include/configs/mx7_common.h +++ b/include/configs/mx7_common.h @@ -59,6 +59,9 @@ /* Secure boot (HAB) support */ #ifdef CONFIG_SECURE_BOOT #define CONFIG_CSF_SIZE 0x2000 +#ifdef CONFIG_SPL_BUILD +#define CONFIG_SPL_DRIVERS_MISC_SUPPORT +#endif #endif #endif -- 1.9.1