From 8b5c7100365b7e6136413fa30d87b501a3fa9de9 Mon Sep 17 00:00:00 2001 From: Hector Palacios Date: Tue, 3 Sep 2019 18:42:42 +0200 Subject: [PATCH] Revert "Revert "ccimx8x: prohibit dey-image-qt from building when trustfence is enabled"" Trustfence is not yet fully supported for the CC8X. Retore the warning. This reverts commit 78534ca779b6874162a829b4cad9ffdf4e3a4515. Signed-off-by: Hector Palacios --- meta-digi-dey/classes/trustfence.bbclass | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta-digi-dey/classes/trustfence.bbclass b/meta-digi-dey/classes/trustfence.bbclass index 058de583f..c9e391132 100644 --- a/meta-digi-dey/classes/trustfence.bbclass +++ b/meta-digi-dey/classes/trustfence.bbclass @@ -36,6 +36,10 @@ python () { import hashlib import os + if ("ccimx8x" in d.getVar("MACHINE", True)): + bb.fatal("Trustfence is not currently supported on the ccimx8x SOM") + return + # Secure console configuration if (d.getVar("TRUSTFENCE_CONSOLE_DISABLE", True) == "1"): d.appendVar("UBOOT_EXTRA_CONF", "CONFIG_CONSOLE_DISABLE=y ")