From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 06 Mar 2024 10:25:40 +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 1rhnWu-00Akez-0C for lore@lore.pengutronix.de; Wed, 06 Mar 2024 10:25:40 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1rhnWt-0003ec-HB; Wed, 06 Mar 2024 10:25:39 +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 1rhnWp-0003aI-BT; Wed, 06 Mar 2024 10:25:35 +0100 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rhnWo-004iYV-Uu; Wed, 06 Mar 2024 10:25:34 +0100 Received: from localhost ([::1] helo=dude05.red.stw.pengutronix.de) by dude05.red.stw.pengutronix.de with esmtp (Exim 4.96) (envelope-from ) id 1rhnWo-0065XD-12; Wed, 06 Mar 2024 10:25:34 +0100 From: Ahmad Fatoum To: distrokit@pengutronix.de Date: Wed, 6 Mar 2024 10:25:29 +0100 Message-Id: <20240306092530.1448784-3-a.fatoum@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240306092530.1448784-1-a.fatoum@pengutronix.de> References: <20240306092530.1448784-1-a.fatoum@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH v2 2/3] blspec-entry: Backport fix from ptxdist master 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: Alexander Dahl , Ahmad Fatoum , 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 From: Alexander Dahl Backport PTXdist commit 0d360df876bc26f709cf (2024-02-02, Alexander Dahl: "blspec-entry: Fix kernel entry for FIT image"), otherwise barebox fails when trying to boot a FIT image like this: ERROR: could not open /mnt/mmc0.1//boot//boot/linux.fit: No such file or directory ERROR: blspec: Booting failed Signed-off-by: Alexander Dahl Signed-off-by: Ahmad Fatoum --- v1 -> v2: - amended commit message like suggested by Roland --- rules/blspec-entry.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/blspec-entry.make b/rules/blspec-entry.make index 7523009f6197..4421594016e1 100644 --- a/rules/blspec-entry.make +++ b/rules/blspec-entry.make @@ -30,7 +30,7 @@ endif BLSPEC_ENTRY_LICENSE = ignore ifdef PTXCONF_KERNEL_FIT -BLSPEC_KERNEL_IMAGE = /boot/linux.fit +BLSPEC_KERNEL_IMAGE = linux.fit else BLSPEC_KERNEL_IMAGE = $(KERNEL_IMAGE) endif -- 2.39.2