From: Alyssa Ross <hi@alyssa.is>
To: devel@spectrum-os.org
Subject: [PATCH 4/6] host/start-vm: boot using partition label
Date: Mon, 19 Sep 2022 07:36:58 +0000 [thread overview]
Message-ID: <20220919073659.1703271-5-hi@alyssa.is> (raw)
In-Reply-To: <20220919073659.1703271-1-hi@alyssa.is>
This will allow booting reliably from multiple disk images, without
relying on order.
Thanks-to: Puck Meerburg <puck@puckipedia.com>
Signed-off-by: Alyssa Ross <hi@alyssa.is>
---
host/start-vm/start-vm.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/host/start-vm/start-vm.rs b/host/start-vm/start-vm.rs
index 96d7eb1..302c020 100644
--- a/host/start-vm/start-vm.rs
+++ b/host/start-vm/start-vm.rs
@@ -29,7 +29,7 @@ fn vm_command(dir: PathBuf) -> Result<Command, String> {
command.args(&["-dc", "test -S env/cloud-hypervisor.sock"]);
command.arg("cloud-hypervisor");
command.args(&["--api-socket", "env/cloud-hypervisor.sock"]);
- command.args(&["--cmdline", "console=ttyS0 root=/dev/vda"]);
+ command.args(&["--cmdline", "console=ttyS0 root=PARTLABEL=root"]);
command.args(&["--memory", "size=128M"]);
command.args(&["--console", "pty"]);
--
2.37.1
next prev parent reply other threads:[~2022-09-19 7:38 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-19 7:36 [PATCH 0/6] Introduce a shared base for application VMs Alyssa Ross
2022-09-19 7:36 ` [PATCH 1/6] host/start-vm: support multiple block devices Alyssa Ross
2022-09-19 7:36 ` [PATCH 2/6] scripts/make-gpt.sh: add support for labels Alyssa Ross
2022-09-19 7:36 ` [PATCH 3/6] vm: build GPT images Alyssa Ross
2022-09-19 7:36 ` Alyssa Ross [this message]
2022-09-19 7:36 ` [PATCH 5/6] release: rename from "img" Alyssa Ross
2022-09-19 7:37 ` [PATCH 6/6] img/app: extract from appvm-{lynx,catgirl} Alyssa Ross
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220919073659.1703271-5-hi@alyssa.is \
--to=hi@alyssa.is \
--cc=devel@spectrum-os.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://spectrum-os.org/git/crosvm
https://spectrum-os.org/git/doc
https://spectrum-os.org/git/mktuntap
https://spectrum-os.org/git/nixpkgs
https://spectrum-os.org/git/spectrum
https://spectrum-os.org/git/ucspi-vsock
https://spectrum-os.org/git/www
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).