Added EFI execution variant.
authorRalph Ronnquist <rrq@rrq.au>
Thu, 8 Feb 2024 11:30:34 +0000 (22:30 +1100)
committerRalph Ronnquist <rrq@rrq.au>
Thu, 8 Feb 2024 11:30:34 +0000 (22:30 +1100)
run.sh

diff --git a/run.sh b/run.sh
index e09fe550831a03a762dff9d83808ff2e3a4a0452..36c07b0d22fb378c7437a10ad7dbcc252ccc9a9f 100755 (executable)
--- a/run.sh
+++ b/run.sh
@@ -6,10 +6,12 @@ FS=FS.sqfs
 PCODE=/usr/share/OVMF/OVMF_CODE_4M.fd
 PVARS=/usr/share/OVMF/OVMF_VARS_4M.fd
 cp $PVARS pvars.bin
-EFI="
+if [ -n "$EFI" ] ; then
+    EFI="
     -drive if=pflash,readonly=on,format=raw,file=$PCODE
     -drive if=pflash,readonly=off,format=raw,file=pvars.bin
 "
+fi
 NET="-nic vde,sock=/run/vde.ctl,model=e1000,mac=06:38:d0:34:20:d2"
 QEMU=qemu-system-x86_64
 [ -z "${CD##*i386*}" ] && QEMU=qemu-system-i386
@@ -18,7 +20,7 @@ exec $QEMU -name "${CD%.img}" -m 2G -M pc,accel=kvm -cpu host \
     -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
+    $EFI $NET
 #    -boot menu=on,splash-time=60000 \
 #    -kernel FS/vmlinuz -initrd FS/initrd.img \
 #    -append "root=FS rootfstype=9p console=ttyS0"