diff options
author | Marc-André Lureau | 2021-07-01 08:24:21 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2021-07-22 15:46:48 +0200 |
commit | f29d52611c73347a2fc0fcea62e6197383b18fd1 (patch) | |
tree | fa4d295969449de1f10ae1fb9be1d30fceb685f1 /softmmu | |
parent | hw/display: fail early when multiple virgl devices are requested (diff) | |
download | qemu-f29d52611c73347a2fc0fcea62e6197383b18fd1.tar.gz qemu-f29d52611c73347a2fc0fcea62e6197383b18fd1.tar.xz qemu-f29d52611c73347a2fc0fcea62e6197383b18fd1.zip |
vl: add virtio-vga-gl to the default_list
Do not instantiate an extra default VGA device if -device virtio-vga-gl
is provided.
Related to commit b36eb8860f8f4a9c6f131c3fd380116a3017e022 ("virtio-gpu:
add virtio-vga-gl")
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20210701062421.721414-1-marcandre.lureau@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'softmmu')
-rw-r--r-- | softmmu/vl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/softmmu/vl.c b/softmmu/vl.c index 4df1496101..a6c17fa39c 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -202,6 +202,7 @@ static struct { { .driver = "virtio-vga", .flag = &default_vga }, { .driver = "ati-vga", .flag = &default_vga }, { .driver = "vhost-user-vga", .flag = &default_vga }, + { .driver = "virtio-vga-gl", .flag = &default_vga }, }; static QemuOptsList qemu_rtc_opts = { |