From e5fb7bbe6037249f96c64ce60ffe46db6ce1722e Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Tue, 17 Sep 2024 15:18:44 +1000 Subject: [PATCH] minor clean-up --- vm.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/vm.sh b/vm.sh index 0ac4938..7c50a54 100755 --- a/vm.sh +++ b/vm.sh @@ -7,12 +7,10 @@ ARGS=( # boot setup -kernel vmlinuz -initrd initrd.gz - -append "expert console=ttyAMA0 root=/dev/vda1 roottype=ext4" + -append "console=ttyAMA0 root=/dev/vda1 roottype=ext4" -serial mon:stdio -echr 0x1c # graphics setup -nographic - #-device virtio-gpu-pci - #-vnc :0 # harddrive setup -device virtio-blk-pci,drive=hd -drive if=none,id=hd,file=$IMG,format=raw @@ -21,4 +19,4 @@ ARGS=( -netdev vde,sock=/run/vde.ctl,id=unet ) -qemu-system-aarch64 "${ARGS[@]}" +exec qemu-system-aarch64 "${ARGS[@]}" -- 2.39.2