From: Alon Levy Date: Sun, 13 Nov 2011 13:27:51 +0000 (+0200) Subject: pc_piix: set qxl revision to 2 for pc-0.14 X-Git-Tag: qemu-xen-4.3.0-rc1~1999 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=3827cdb1c3aa17a792d1658161195b9d7173c26b;p=qemu-upstream-4.6-testing.git pc_piix: set qxl revision to 2 for pc-0.14 The default is still 3, and I didn't change older machine types. Signed-off-by: Alon Levy Signed-off-by: Anthony Liguori --- diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 27ea5707e..970f43c99 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -311,6 +311,18 @@ static QEMUMachine pc_machine_v0_14 = { .desc = "Standard PC", .init = pc_init_pci, .max_cpus = 255, + .compat_props = (GlobalProperty[]) { + { + .driver = "qxl", + .property = "revision", + .value = stringify(2), + },{ + .driver = "qxl-vga", + .property = "revision", + .value = stringify(2), + }, + { /* end of list */ } + }, }; static QEMUMachine pc_machine_v0_13 = {