From: Ye Li Date: Thu, 25 Mar 2021 09:30:18 +0000 (+0800) Subject: imx: cmd_dek: Enable DEK only for chips supporting CAAM X-Git-Tag: v2025.01-rc5-pxa1908~1929^2~73 X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=e149b98c11306703b9ac1e2f0014469621685be7;p=u-boot.git imx: cmd_dek: Enable DEK only for chips supporting CAAM Since cmd_dek is using CAAM JR, so enable the CMD_DEK only when HAS_CAAM is set Signed-off-by: Ye Li Signed-off-by: Peng Fan --- diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig index 8c00ad1391..ca06c1eaaf 100644 --- a/arch/arm/mach-imx/Kconfig +++ b/arch/arm/mach-imx/Kconfig @@ -45,7 +45,7 @@ config IMX_HAB bool "Support i.MX HAB features" depends on ARCH_MX7 || ARCH_MX6 || ARCH_MX5 || ARCH_IMX8M select FSL_CAAM if HAS_CAAM - imply CMD_DEKBLOB + imply CMD_DEKBLOB if HAS_CAAM help This option enables the support for secure boot (HAB). See doc/imx/habv4/* for more details.