From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 18 Mar 2026 11:56:35 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1w2oZn-0029vI-2k for lore@lore.pengutronix.de; Wed, 18 Mar 2026 11:56:35 +0100 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1w2oZn-0002mz-0S; Wed, 18 Mar 2026 11:56:35 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1w2oZm-0002mQ-44; Wed, 18 Mar 2026 11:56:34 +0100 Received: from dude04.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::ac] helo=dude04) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1w2oZl-000tTZ-32; Wed, 18 Mar 2026 11:56:33 +0100 Received: from rhi by dude04 with local (Exim 4.98.2) (envelope-from ) id 1w2oZl-00000003SBz-3lHq; Wed, 18 Mar 2026 11:56:33 +0100 From: Roland Hieber To: distrokit@pengutronix.de Date: Wed, 18 Mar 2026 11:56:10 +0100 Message-ID: <20260318105609.821637-2-rhi@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <1773831254-1049c90b6b1de09a721258b4@pty> References: <1773831254-1049c90b6b1de09a721258b4@pty> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH v2] fixup! v7a: tf-a: version bump v2.12 -> v2.14 X-BeenThere: distrokit@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: DistroKit Mailinglist List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Roland Hieber Sender: "DistroKit" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: distrokit-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false host-tf-a now tries to detect an aarch32 toolchain early in the Makefile before trying to build fiptool, and errors out strangely if it cannot find one, so copy the relevant variables from TF_A_MAKE_OPT into HOST_TF_A_MAKE_OPT to make it work. Signed-off-by: Roland Hieber --- Somehow this only happens if you don't have an aarch64 (sic!) toolchain installed in your PATH, which was the case with most devel hosts I tried this on before. I'll send the same patch for PTXdist host-tf-a too. --- configs/platform-v7a/rules/host-tf-a.arch.make | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 configs/platform-v7a/rules/host-tf-a.arch.make diff --git a/configs/platform-v7a/rules/host-tf-a.arch.make b/configs/platform-v7a/rules/host-tf-a.arch.make new file mode 100644 index 000000000000..612190d51812 --- /dev/null +++ b/configs/platform-v7a/rules/host-tf-a.arch.make @@ -0,0 +1,7 @@ +HOST_TF_A_MAKE_OPT := \ + CROSS_COMPILE=$(BOOTLOADER_CROSS_COMPILE) \ + HOSTCC=$(HOSTCC) \ + ARCH=$(PTXCONF_TF_A_ARCH_STRING) \ + ARM_ARCH_MAJOR=$(PTXCONF_TF_A_ARM_ARCH_MAJOR) \ + BUILD_STRING=$(PTXCONF_TF_A_VERSION) \ + fiptool -- 2.47.3