From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 28 Aug 2023 10:58:15 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qaY4f-00Bq2Q-0I for lore@lore.pengutronix.de; Mon, 28 Aug 2023 10:58:15 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1qaY4c-0000iz-5r; Mon, 28 Aug 2023 10:58:14 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qaY4W-0000gf-DV; Mon, 28 Aug 2023 10:58:08 +0200 Received: from [2a0a:edc0:0:1101:1d::ac] (helo=dude04.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1qaY4V-002Ai3-Lu; Mon, 28 Aug 2023 10:58:07 +0200 Received: from rhi by dude04.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1qaY4V-001ERU-0V; Mon, 28 Aug 2023 10:58:07 +0200 From: Roland Hieber To: distrokit@pengutronix.de Date: Mon, 28 Aug 2023 10:58:04 +0200 Message-Id: <20230828085804.293762-8-rhi@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230828085804.293762-1-rhi@pengutronix.de> References: <20230828085804.293762-1-rhi@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH 7/7] v7a: run: start with barebox by default 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.ext.pengutronix.de); SAEximRunCond expanded to false Booting via 9p results in a machine that feeld very differently than any other boards in platform-v7a, mainly because there is no data partition, no barebox-state, and therefore no RAUC support. All of this is possible by booting from the emulated SD card image through barebox. Default to barebox so that qemu-vexpress feels as much as possible like booting from other boards. Signed-off-by: Roland Hieber --- configs/platform-v7a/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/platform-v7a/run b/configs/platform-v7a/run index 004706ddaf59..3874a7b2f0af 100755 --- a/configs/platform-v7a/run +++ b/configs/platform-v7a/run @@ -177,7 +177,7 @@ run_qemu_barebox() { "${QEMU_BAREBOX_ARGS[@]}" } -target="${1:-9p}" +target="${1:-barebox}" #set -x run_qemu_${target} -- 2.39.2