From c9de383878c5e248ae549182a9f2477f5bb2a5f5 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) (cherry picked from commit acda6159eefbefaee15b19568fd1c4665c047432) --- cmd/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/Kconfig b/cmd/Kconfig index 0b07b3b9d7..0817510dea 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1576,6 +1576,8 @@ config CMD_AES 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