From f53afab0472387745af2755911c113ed5b4f699f Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Tue, 6 Feb 2024 20:26:06 +1100 Subject: [PATCH] use 9p for direct FS access --- run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" -- 2.39.2