From b4b1dc8ed74ce518a02f091b9a26ec88c79b659e Mon Sep 17 00:00:00 2001 From: Breno Lima Date: Fri, 23 Mar 2018 16:25:33 -0300 Subject: [PATCH] MLK-17914: cmd: blob: Add SECURE_BOOT and CAAM supported SoCs as dependency In order to build CMD_BLOB on i.MX CAAM supported devices it's necessary to select SECURE_BOOT. Add SECURE_BOOT and CAAM supported SoCs as dependency. Signed-off-by: Breno Lima Reviewed-by: Ye Li (cherry picked from commit 4afb519038d190687cac6d410e9ad65d0655f1c0) --- cmd/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/Kconfig b/cmd/Kconfig index 5e651b20a9..72b95adbb2 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -743,6 +743,8 @@ menu "Security commands" config CMD_BLOB bool "Enable the 'blob' command" + depends on !MX6ULL && !MX6SLL && !MX6SL && !IMX8M && !MX7ULP + select SECURE_BOOT if ARCH_MX6 || ARCH_MX7 help This is used with the Freescale secure boot mechanism. -- 2.17.1