From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 15 Feb 2024 16:05:46 +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 1radJ4-007Z9H-0p for lore@lore.pengutronix.de; Thu, 15 Feb 2024 16:05:46 +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 1radJ3-0006Qj-MP; Thu, 15 Feb 2024 16:05:45 +0100 Received: from mail.thorsis.com ([92.198.35.195]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1radIu-0006QB-Ed for distrokit@pengutronix.de; Thu, 15 Feb 2024 16:05:37 +0100 From: Alexander Dahl DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thorsis.com; s=default; t=1708009535; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/IDG494Cnrxv4Eh9gVM+B9r7ENpMPsdO0sCxRou/hnY=; b=TkyA9pdpu9da56ZXfkoBORZpfUg69TPlfsqICm+AYavh0KOg8j6EfgFMiMnXPkyuwp56YV RWuInDfkOSVA968uiDTNKiexN/f8jLHl0NHnITvfZRtuXv8srGtOy0s1oP+VGRM8QTGjyr 6DMQ7cs3W1QvyEy7yC/O4Cxm3sYEKeGytYn1tAGmYCrxrka5Tp0QodeEz/9fGLE+R5ERxS LXsuok9GhyzPeYkP8g1rv84eDNKlwiQFIvuATs2KUZYkS4etmFi++v2yKhf5XaBIxR3eRZ NZUx6Epa746+WgPwgDmUWHToFWHEzneBMggfQhfJEzwT5pxyRQSM9gFsrSUufQ== To: distrokit@pengutronix.de Date: Thu, 15 Feb 2024 16:05:31 +0100 Message-Id: <20240215150532.2702910-3-ada@thorsis.com> In-Reply-To: <20240215150532.2702910-1-ada@thorsis.com> References: <20240215150532.2702910-1-ada@thorsis.com> Content-Transfer-Encoding: 8bit X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.whiteo.stw.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-2.8 required=4.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.2 Subject: [DistroKit] [PATCH 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: , 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 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 --- 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 7523009..4421594 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