From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 18 Mar 2026 15:01:33 +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 1w2rSn-002DXh-2h for lore@lore.pengutronix.de; Wed, 18 Mar 2026 15:01:33 +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 1w2rSn-0005Ds-Au; Wed, 18 Mar 2026 15:01:33 +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 1w2rSi-0005Dd-MN; Wed, 18 Mar 2026 15:01:28 +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 1w2rSi-000vA1-1d; Wed, 18 Mar 2026 15:01:28 +0100 Received: from rhi by dude04 with local (Exim 4.98.2) (envelope-from ) id 1w2rSi-00000004IDp-1rUb; Wed, 18 Mar 2026 15:01:28 +0100 From: Roland Hieber To: distrokit@pengutronix.de Date: Wed, 18 Mar 2026 15:00:48 +0100 Message-ID: <20260318140125.1023235-1-rhi@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260318105609.821637-2-rhi@pengutronix.de> References: <20260318105609.821637-2-rhi@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH] squash! 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. Additionally AARCH32_SP needs to be set (it is usually set in TF_A_EXTRA_ARGS in the platformconfig, based on the specific board); set it to one of the available PSCI providers to prevent an error, even though it has no effect on the resulting fiptool binary. Signed-off-by: Roland Hieber --- Robert, sorry, it's clearly one of those "not enough coffee" days. This is an incremental fixup on top of the already applied fixup on 'next'. I've amended the commit message, would be nice if you could merge them while squashing this patch into the original commit. - Roland --- configs/platform-v7a/rules/host-tf-a.arch.make | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configs/platform-v7a/rules/host-tf-a.arch.make b/configs/platform-v7a/rules/host-tf-a.arch.make index 612190d51812..b32edc82a9ce 100644 --- a/configs/platform-v7a/rules/host-tf-a.arch.make +++ b/configs/platform-v7a/rules/host-tf-a.arch.make @@ -1,7 +1,8 @@ -HOST_TF_A_MAKE_OPT := \ +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) \ + AARCH32_SP=sp_min \ fiptool -- 2.47.3