From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 22 Aug 2024 15:46:01 +0200 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 1sh88X-00CGRI-1x for lore@lore.pengutronix.de; Thu, 22 Aug 2024 15:46:01 +0200 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 1sh88X-0001uF-0r; Thu, 22 Aug 2024 15:46:01 +0200 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 1sh88P-0001rq-1G; Thu, 22 Aug 2024 15:45:53 +0200 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 1sh88O-002GJi-KA; Thu, 22 Aug 2024 15:45:52 +0200 Received: from localhost ([::1] helo=dude05.red.stw.pengutronix.de) by dude05.red.stw.pengutronix.de with esmtp (Exim 4.96) (envelope-from ) id 1sh88O-00DKOR-1g; Thu, 22 Aug 2024 15:45:52 +0200 From: Ahmad Fatoum To: distrokit@pengutronix.de Date: Thu, 22 Aug 2024 15:45:50 +0200 Message-Id: <20240822134551.3176638-2-a.fatoum@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240822134551.3176638-1-a.fatoum@pengutronix.de> References: <20240822134551.3176638-1-a.fatoum@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH 2/3] MIPS: qemu-run: fix barebox Malta image name 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: Ahmad Fatoum , ore@pengutronix.de 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 The BSP appends the barebox image with a -malta suffix, but qemu-run didn't know that. Add it, so run configs/platform-mips/run barebox works as expected. Signed-off-by: Ahmad Fatoum --- configs/platform-mips/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/platform-mips/run b/configs/platform-mips/run index 6d6fca68c2cd..8b2d8d0612fe 100755 --- a/configs/platform-mips/run +++ b/configs/platform-mips/run @@ -72,7 +72,7 @@ QEMU_ARGS=( "${QEMU_ARGS[@]}" -rtc base=2000-01-01 ) QEMU_LINUX_ARGS=( -kernel ${PTXDIST_PLATFORMDIR}/images/vmlinuz-malta -dtb ${PTXDIST_PLATFORMDIR}/images/qemu-malta.dtb-bb ) # the barebox device tree has a state node for bootchooser -QEMU_BAREBOX_ARGS=( -bios ${PTXDIST_PLATFORMDIR}/images/barebox-qemu-malta.img ) +QEMU_BAREBOX_ARGS=( -bios ${PTXDIST_PLATFORMDIR}/images/barebox-qemu-malta.img-malta ) check_hd() { if [ ! -e "${PTXDIST_PLATFORMDIR}/images/malta.hdimg" ]; then -- 2.39.2