mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
vl.c: check for qxl availability
Check for qxl availability in vl.c. This will allow to remove #ifdef CONFIG_SPICE .. #endif later in this series Cc: Anthony Liguori <aliguori@us.ibm.com> Cc: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
36b7f27d21
commit
879049a397
12
vl.c
12
vl.c
@ -1714,6 +1714,11 @@ static bool vmware_vga_available(void)
|
||||
return object_class_by_name("vmware-svga");
|
||||
}
|
||||
|
||||
static bool qxl_vga_available(void)
|
||||
{
|
||||
return object_class_by_name("qxl-vga");
|
||||
}
|
||||
|
||||
static void select_vgahw (const char *p)
|
||||
{
|
||||
const char *opts;
|
||||
@ -1743,7 +1748,12 @@ static void select_vgahw (const char *p)
|
||||
} else if (strstart(p, "xenfb", &opts)) {
|
||||
vga_interface_type = VGA_XENFB;
|
||||
} else if (strstart(p, "qxl", &opts)) {
|
||||
vga_interface_type = VGA_QXL;
|
||||
if (qxl_vga_available()) {
|
||||
vga_interface_type = VGA_QXL;
|
||||
} else {
|
||||
fprintf(stderr, "Error: QXL VGA not available\n");
|
||||
exit(0);
|
||||
}
|
||||
} else if (!strstart(p, "none", &opts)) {
|
||||
invalid_vga:
|
||||
fprintf(stderr, "Unknown vga type: %s\n", p);
|
||||
|
Loading…
Reference in New Issue
Block a user