From ad09b42433bdbce877f6c280c6502336a61c5edf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csaba=20Szil=C3=A1gyi?= Date: Wed, 30 Jul 2025 07:45:46 +0000 Subject: [PATCH] Revert "arm/hafnium: refuse to build on non-x86-64 hosts" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to original commit, clang for other targets like aarch64 were not available. This condition is not present anymore therefore check for x86_64 can be removed. This reverts commit 01a13b11ad25aaeebf861bc30029282709216fe0. Signed-off-by: Csaba Szilágyi Signed-off-by: Jon Mason --- meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb | 6 ------ 1 file changed, 6 deletions(-) diff --git a/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb b/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb index d4bf501f..6bf6d8e9 100644 --- a/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb +++ b/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb @@ -68,10 +68,4 @@ do_deploy() { } addtask deploy after do_install -python() { - # https://developer.trustedfirmware.org/T898 - if d.getVar("BUILD_ARCH") != "x86_64": - raise bb.parse.SkipRecipe("Cannot be built on non-x86-64 hosts") -} - EXCLUDE_FROM_WORLD = "1"