diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-03-05 09:32:36 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-03-05 09:32:36 +0100 |
commit | f4e0c45084aa00a5cd2a3bb090b028c01ed731c8 (patch) | |
tree | 1066fe198e9f3098b82db33504d0fb1bfcba4dbb /bin/debvm-run | |
parent | ef4d1a589cb00057860164e8120b1f8c1291cc89 (diff) | |
download | debvm-f4e0c45084aa00a5cd2a3bb090b028c01ed731c8.tar.gz |
debvm-run: always use virtio input devices for graphical mode
These clearly benefit the amd64 case as well. Experience with the
virtio gpu is not as clear cut as it may crash qemu.
Diffstat (limited to 'bin/debvm-run')
-rwxr-xr-x | bin/debvm-run | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/debvm-run b/bin/debvm-run index 77f2f3b..cc82fe1 100755 --- a/bin/debvm-run +++ b/bin/debvm-run @@ -363,11 +363,13 @@ else set -- \ -device virtio-gpu-gl-pci \ -display gtk,gl=on \ - -device virtio-keyboard-pci \ - -device virtio-tablet-pci \ "$@" ;; esac + set -- \ + -device virtio-keyboard-pci \ + -device virtio-tablet-pci \ + "$@" fi if test -n "$SSHPORT"; then |