From: Ralph Ronnquist <rrq@rrq.au>
Date: Tue, 6 Feb 2024 09:26:06 +0000 (+1100)
Subject: use 9p for direct FS access
X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=f53afab0472387745af2755911c113ed5b4f699f;p=rrq%2Frescue-boot.git

use 9p for direct FS access
---

diff --git a/run.sh b/run.sh
index 3f19b19..e09fe55 100755
--- a/run.sh
+++ b/run.sh
@@ -2,6 +2,7 @@
 
 DISK=disk.raw
 CD=$1
+FS=FS.sqfs
 PCODE=/usr/share/OVMF/OVMF_CODE_4M.fd
 PVARS=/usr/share/OVMF/OVMF_VARS_4M.fd
 cp $PVARS pvars.bin
@@ -15,9 +16,9 @@ QEMU=qemu-system-x86_64
 exec $QEMU -name "${CD%.img}" -m 2G -M pc,accel=kvm -cpu host \
     -drive media=disk,format=raw,file=$CD \
     -drive media=disk,format=raw,file=$DISK \
+    -virtfs local,path=FS,mount_tag=FS,security_model=passthrough \
     -serial mon:stdio -echr 0x1c -vga std \
     $NET
 #    -boot menu=on,splash-time=60000 \
-#    -virtfs local,path=FS,mount_tag=FS,security_model=passthrough \
 #    -kernel FS/vmlinuz -initrd FS/initrd.img \
 #    -append "root=FS rootfstype=9p console=ttyS0"