We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31c773c commit 68e8ccfCopy full SHA for 68e8ccf
quickemu
@@ -883,7 +883,11 @@ function configure_display() {
883
linux)
884
case ${display} in
885
none|spice|spice-app) DISPLAY_DEVICE="virtio-gpu";;
886
- *) DISPLAY_DEVICE="virtio-vga";;
+ *) if [ "${arch_vm}" == "aarch64" ]; then
887
+ DISPLAY_DEVICE="virtio-gpu"
888
+ else
889
+ DISPLAY_DEVICE="virtio-vga"
890
+ fi;;
891
esac;;
892
macos)
893
# qxl-vga and VGA supports seamless mouse and sane resolutions if only
0 commit comments