test stuff

This commit is contained in:
mjallen18
2025-08-23 18:00:05 -05:00
parent c680392513
commit 6c9a010c3c
5 changed files with 70 additions and 7 deletions

View File

@@ -8,14 +8,14 @@ writeShellApplication {
echo "Usage: $0 <path-to-boot-image>"
exit 1
fi
tmpFile=$(mktemp /tmp/test-image.XXXXXX)
tmpFile=$(mktemp /home/matt/tmp/test-image.XXXXXX)
trap 'rm -f $tmpFile' EXIT
cp "$1" "$tmpFile"
qemu-system-x86_64 \
-enable-kvm \
-m 2G \
-m 4G \
-cpu max \
-smp 2 \
-smp 4 \
-netdev user,id=net0,hostfwd=tcp::2222-:22 \
-device virtio-net-pci,netdev=net0 \
-drive if=pflash,format=raw,readonly=on,file=${OVMF.firmware} \