From patchwork Wed Jul 30 07:45:46 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Csaba_Szil=C3=A1gyi?= X-Patchwork-Id: 67683 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 478D4C87FD3 for ; Wed, 30 Jul 2025 07:47:38 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.29943.1753861654206293066 for ; Wed, 30 Jul 2025 00:47:34 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: csaba.szilagyi@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 93B811C25; Wed, 30 Jul 2025 00:47:25 -0700 (PDT) Received: from ubuntu-build.budapest.arm.com (GM0ZH93R.arm.com [10.45.26.24]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 1D4803F673; Wed, 30 Jul 2025 00:47:32 -0700 (PDT) From: =?utf-8?q?Csaba_Szil=C3=A1gyi?= To: meta-arm@lists.yoctoproject.org Cc: =?utf-8?q?Csaba_Szil=C3=A1gyi?= Subject: [PATCH 1/6] Revert "arm/hafnium: refuse to build on non-x86-64 hosts" Date: Wed, 30 Jul 2025 07:45:46 +0000 Message-ID: <20250730074551.1388-2-csaba.szilagyi@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250730074551.1388-1-csaba.szilagyi@arm.com> References: <20250730074551.1388-1-csaba.szilagyi@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 30 Jul 2025 07:47:38 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/6628 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 --- 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" From patchwork Wed Jul 30 07:45:47 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Csaba_Szil=C3=A1gyi?= X-Patchwork-Id: 67680 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2F77EC87FCB for ; Wed, 30 Jul 2025 07:47:38 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.29979.1753861655216759675 for ; Wed, 30 Jul 2025 00:47:35 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: csaba.szilagyi@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id BECD91DB5; Wed, 30 Jul 2025 00:47:26 -0700 (PDT) Received: from ubuntu-build.budapest.arm.com (GM0ZH93R.arm.com [10.45.26.24]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id E2B063F673; Wed, 30 Jul 2025 00:47:33 -0700 (PDT) From: =?utf-8?q?Csaba_Szil=C3=A1gyi?= To: meta-arm@lists.yoctoproject.org Cc: =?utf-8?q?Csaba_Szil=C3=A1gyi?= Subject: [PATCH 2/6] arm/hafnium: Depend on clang-native Date: Wed, 30 Jul 2025 07:45:47 +0000 Message-ID: <20250730074551.1388-3-csaba.szilagyi@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250730074551.1388-1-csaba.szilagyi@arm.com> References: <20250730074551.1388-1-csaba.szilagyi@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 30 Jul 2025 07:47:38 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/6629 hafnium is built by clang. Dependency is required for successful build. Signed-off-by: Csaba Szilágyi --- meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 6bf6d8e9..9b84fa14 100644 --- a/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb +++ b/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb @@ -1,6 +1,6 @@ SUMMARY = "Hafnium" DESCRIPTION = "A reference Secure Partition Manager (SPM) for systems that implement the Armv8.4-A Secure-EL2 extension" -DEPENDS = "gn-native ninja-native bison-native bc-native dtc-native openssl-native" +DEPENDS = "gn-native ninja-native bison-native bc-native dtc-native openssl-native clang-native" LICENSE = "BSD-3-Clause & GPL-2.0-only" LIC_FILES_CHKSUM = "file://LICENSE;md5=782b40c14bad5294672c500501edc103" From patchwork Wed Jul 30 07:45:48 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Csaba_Szil=C3=A1gyi?= X-Patchwork-Id: 67684 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 56190C87FD4 for ; Wed, 30 Jul 2025 07:47:38 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.29944.1753861656036684259 for ; Wed, 30 Jul 2025 00:47:36 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: csaba.szilagyi@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 918BE1C25; Wed, 30 Jul 2025 00:47:27 -0700 (PDT) Received: from ubuntu-build.budapest.arm.com (GM0ZH93R.arm.com [10.45.26.24]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 197B23F673; Wed, 30 Jul 2025 00:47:34 -0700 (PDT) From: =?utf-8?q?Csaba_Szil=C3=A1gyi?= To: meta-arm@lists.yoctoproject.org Cc: =?utf-8?q?Csaba_Szil=C3=A1gyi?= Subject: [PATCH 3/6] arm/hafnium: Select valid platform for hafnium and properly pass to make Date: Wed, 30 Jul 2025 07:45:48 +0000 Message-ID: <20250730074551.1388-4-csaba.szilagyi@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250730074551.1388-1-csaba.szilagyi@arm.com> References: <20250730074551.1388-1-csaba.szilagyi@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 30 Jul 2025 07:47:38 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/6630 'qemu_aarch64' is not a valid hafnium platform. Supported platforms are: * 'secure_rd_v3' * 'secure_rd_v3_cfg1' * 'secure_aem_v8a_fvp_vhe' * 'aem_v8a_fvp_vhe' * 'aem_v8a_fvp_vhe_ffa_v1_1' * 'qemu_aarch64_vhe' * 'secure_qemu_aarch64' * 'rpi4' * 'secure_tc' Previusly selected 'qemu_aarch64' did not cause error because it was NOT passed to make. It had no effect. Within this commit, platform 'secure_qemu_aarch64' is selected and passed to make. Signed-off-by: Csaba Szilágyi --- meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 9b84fa14..693e81f2 100644 --- a/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb +++ b/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb @@ -27,7 +27,7 @@ HAFNIUM_PROJECT ?= "reference" # Platform must be set for each machine HAFNIUM_PLATFORM ?= "invalid" -HAFNIUM_PLATFORM:qemuarm64 = "qemu_aarch64" +HAFNIUM_PLATFORM:qemuarm64 = "secure_qemu_aarch64" # do_deploy will install everything listed in this variable. It is set by # default to hafnium @@ -38,6 +38,8 @@ EXTRA_OEMAKE += "PROJECT=${HAFNIUM_PROJECT}" EXTRA_OEMAKE += "OUT_DIR=${B}" +EXTRA_OEMAKE += "PLATFORM=${HAFNIUM_PLATFORM}" + # Don't use prebuilt binaries for gn and ninja EXTRA_OEMAKE += "GN=${STAGING_BINDIR_NATIVE}/gn NINJA=${STAGING_BINDIR_NATIVE}/ninja" From patchwork Wed Jul 30 07:45:49 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Csaba_Szil=C3=A1gyi?= X-Patchwork-Id: 67681 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 30844C87FCC for ; Wed, 30 Jul 2025 07:47:38 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.29980.1753861656826694295 for ; Wed, 30 Jul 2025 00:47:36 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: csaba.szilagyi@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 7B4E71BC0; Wed, 30 Jul 2025 00:47:28 -0700 (PDT) Received: from ubuntu-build.budapest.arm.com (GM0ZH93R.arm.com [10.45.26.24]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 054973F673; Wed, 30 Jul 2025 00:47:35 -0700 (PDT) From: =?utf-8?q?Csaba_Szil=C3=A1gyi?= To: meta-arm@lists.yoctoproject.org Cc: =?utf-8?q?Csaba_Szil=C3=A1gyi?= Subject: [PATCH 4/6] arm/hafnium: Remove deprecated patch for third_party/linux submodule Date: Wed, 30 Jul 2025 07:45:49 +0000 Message-ID: <20250730074551.1388-5-csaba.szilagyi@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250730074551.1388-1-csaba.szilagyi@arm.com> References: <20250730074551.1388-1-csaba.szilagyi@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 30 Jul 2025 07:47:38 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/6631 third_party/linux submodule has been removed from hafnium in the following commit: ddeedafa - chore: drop the third_party/linux submodule Relevant patch can not be applied anymore. Patch is removed from the recipe. Signed-off-by: Csaba Szilágyi --- ...ig-native-to-find-the-libssl-headers.patch | 26 ------------------- .../recipes-bsp/hafnium/hafnium_2.12.0.bb | 1 - 2 files changed, 27 deletions(-) delete mode 100644 meta-arm/recipes-bsp/hafnium/hafnium/0001-Use-pkg-config-native-to-find-the-libssl-headers.patch diff --git a/meta-arm/recipes-bsp/hafnium/hafnium/0001-Use-pkg-config-native-to-find-the-libssl-headers.patch b/meta-arm/recipes-bsp/hafnium/hafnium/0001-Use-pkg-config-native-to-find-the-libssl-headers.patch deleted file mode 100644 index cfb534d4..00000000 --- a/meta-arm/recipes-bsp/hafnium/hafnium/0001-Use-pkg-config-native-to-find-the-libssl-headers.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 1c1e7ca2874feaa3e447dce578487d42c226ef46 Mon Sep 17 00:00:00 2001 -From: Ross Burton -Date: Sat, 17 Jul 2021 14:38:02 -0500 -Subject: [PATCH] Use pkg-config-native to find the libssl headers. - -Upstream-Status: Inappropriate -Signed-off-by: Ross Burton ---- - scripts/Makefile | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/scripts/Makefile b/scripts/Makefile -index 9adb6d247818..5fe371c7d7f5 100644 ---- a/scripts/Makefile -+++ b/scripts/Makefile -@@ -3,8 +3,8 @@ - # scripts contains sources for various helper programs used throughout - # the kernel for the build process. - --CRYPTO_LIBS = $(shell pkg-config --libs libcrypto 2> /dev/null || echo -lcrypto) --CRYPTO_CFLAGS = $(shell pkg-config --cflags libcrypto 2> /dev/null) -+CRYPTO_LIBS = $(shell pkg-config-native --libs libcrypto 2> /dev/null || echo -lcrypto) -+CRYPTO_CFLAGS = $(shell pkg-config-native --cflags libcrypto 2> /dev/null) - - hostprogs-always-$(CONFIG_BUILD_BIN2C) += bin2c - hostprogs-always-$(CONFIG_KALLSYMS) += kallsyms 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 693e81f2..3db20eeb 100644 --- a/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb +++ b/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb @@ -14,7 +14,6 @@ inherit deploy python3native pkgconfig ${CLANGNATIVE} SRC_URI = "gitsm://git.trustedfirmware.org/hafnium/hafnium.git;protocol=https;branch=master \ file://0001-arm-hafnium-fix-kernel-tool-linking.patch \ - file://0001-Use-pkg-config-native-to-find-the-libssl-headers.patch;patchdir=third_party/linux \ " SRCREV = "2cf2ca7c4b81ab18e9cd363d9a5c8288e2a94fda" B = "${WORKDIR}/build" From patchwork Wed Jul 30 07:45:50 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Csaba_Szil=C3=A1gyi?= X-Patchwork-Id: 67682 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3DC14C87FC9 for ; Wed, 30 Jul 2025 07:47:38 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.29945.1753861657698654484 for ; Wed, 30 Jul 2025 00:47:37 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: csaba.szilagyi@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 4E9AA1C25; Wed, 30 Jul 2025 00:47:29 -0700 (PDT) Received: from ubuntu-build.budapest.arm.com (GM0ZH93R.arm.com [10.45.26.24]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id CB2CE3F673; Wed, 30 Jul 2025 00:47:36 -0700 (PDT) From: =?utf-8?q?Csaba_Szil=C3=A1gyi?= To: meta-arm@lists.yoctoproject.org Cc: =?utf-8?q?Csaba_Szil=C3=A1gyi?= Subject: [PATCH 5/6] arm/hafnium: Restore patch on gn visibility Date: Wed, 30 Jul 2025 07:45:50 +0000 Message-ID: <20250730074551.1388-6-csaba.szilagyi@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250730074551.1388-1-csaba.szilagyi@arm.com> References: <20250730074551.1388-1-csaba.szilagyi@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 30 Jul 2025 07:47:38 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/6632 This patch has been dropped in the following commit: f1fc5c53 - arm/hafnium: update to v2.12.0 Unfortunately the original issue is still present and the patch is required for the successful build. Patch is restored in this commit. Signed-off-by: Csaba Szilágyi --- .../0001-work-around-visibility-issue.patch | 29 +++++++++++++++++++ .../recipes-bsp/hafnium/hafnium_2.12.0.bb | 1 + 2 files changed, 30 insertions(+) create mode 100644 meta-arm/recipes-bsp/hafnium/hafnium/0001-work-around-visibility-issue.patch diff --git a/meta-arm/recipes-bsp/hafnium/hafnium/0001-work-around-visibility-issue.patch b/meta-arm/recipes-bsp/hafnium/hafnium/0001-work-around-visibility-issue.patch new file mode 100644 index 00000000..dc0c35fe --- /dev/null +++ b/meta-arm/recipes-bsp/hafnium/hafnium/0001-work-around-visibility-issue.patch @@ -0,0 +1,29 @@ +From 745294ffa9bb9296eb4250f24dd0ae8115fadd7a Mon Sep 17 00:00:00 2001 +From: Jon Mason +Date: Thu, 27 Oct 2022 20:10:09 +0000 +Subject: [PATCH] work around visibility issue + +gn commit 46b572ce4ceedfe57f4f84051bd7da624c98bf01 "fixed" the +visibility field not applying to public configs. This caused dtc to +have issues due to libfdt and others not being specified. Due to the +number, it was cleaner to remove the visibility field (which defaults to +everything being visible). + +Upstream-Status: Pending [Not submitted to upstream yet] +Signed-off-by: Jon Mason +--- + BUILD.gn | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/BUILD.gn b/BUILD.gn +index f55560c540de..d60c3e37135b 100644 +--- a/BUILD.gn ++++ b/BUILD.gn +@@ -5,7 +5,6 @@ + # https://opensource.org/licenses/BSD-3-Clause. + + config("libfdt_config") { +- visibility = [ ":gtest" ] + include_dirs = [ + "libfdt", + "hafnium_inc", 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 3db20eeb..42a02259 100644 --- a/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb +++ b/meta-arm/recipes-bsp/hafnium/hafnium_2.12.0.bb @@ -14,6 +14,7 @@ inherit deploy python3native pkgconfig ${CLANGNATIVE} SRC_URI = "gitsm://git.trustedfirmware.org/hafnium/hafnium.git;protocol=https;branch=master \ file://0001-arm-hafnium-fix-kernel-tool-linking.patch \ + file://0001-work-around-visibility-issue.patch;patchdir=third_party/dtc \ " SRCREV = "2cf2ca7c4b81ab18e9cd363d9a5c8288e2a94fda" B = "${WORKDIR}/build" From patchwork Wed Jul 30 07:45:51 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Csaba_Szil=C3=A1gyi?= X-Patchwork-Id: 67685 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4EC57C87FCB for ; Wed, 30 Jul 2025 07:47:48 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.29946.1753861658386429298 for ; Wed, 30 Jul 2025 00:47:38 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: csaba.szilagyi@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 203A01DB5; Wed, 30 Jul 2025 00:47:30 -0700 (PDT) Received: from ubuntu-build.budapest.arm.com (GM0ZH93R.arm.com [10.45.26.24]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 9FB163F673; Wed, 30 Jul 2025 00:47:37 -0700 (PDT) From: =?utf-8?q?Csaba_Szil=C3=A1gyi?= To: meta-arm@lists.yoctoproject.org Cc: =?utf-8?q?Csaba_Szil=C3=A1gyi?= Subject: [PATCH 6/6] arm/hafnium: add hafnium to qemuarm64-secureboot target Date: Wed, 30 Jul 2025 07:45:51 +0000 Message-ID: <20250730074551.1388-7-csaba.szilagyi@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250730074551.1388-1-csaba.szilagyi@arm.com> References: <20250730074551.1388-1-csaba.szilagyi@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 30 Jul 2025 07:47:48 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/6633 Signed-off-by: Csaba Szilágyi --- ci/qemuarm64-secureboot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/qemuarm64-secureboot.yml b/ci/qemuarm64-secureboot.yml index b26941e0..fc9c90b2 100644 --- a/ci/qemuarm64-secureboot.yml +++ b/ci/qemuarm64-secureboot.yml @@ -9,6 +9,7 @@ machine: qemuarm64-secureboot target: - core-image-base + - hafnium local_conf_header: optee: |