From: Ralph Ronnquist Date: Tue, 17 Sep 2024 05:18:44 +0000 (+1000) Subject: minor clean-up X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=e5fb7bbe6037249f96c64ce60ffe46db6ce1722e;p=rrq%2Fbespoke-installer.git minor clean-up --- 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[@]}"