From: Eran Matityahu Date: Wed, 28 Feb 2018 07:51:34 +0000 (+0200) Subject: mx7_common: Fix SPL compilation with secure boot support enabled X-Git-Tag: v2018.05-rc2~9^2~22 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=dad75e241c0a62b48ad40f4edbf81aecbbce8fd7;p=u-boot mx7_common: Fix SPL compilation with secure boot support enabled 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 --- diff --git a/include/configs/mx7_common.h b/include/configs/mx7_common.h index defb38c5b3..6ebf2e1c68 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