aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2011-11-13 15:27:51 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2011-11-14 11:26:32 -0600
commit3827cdb1c3aa17a792d1658161195b9d7173c26b (patch)
tree1ce40946452ec501011916775eec0576d1699241
parente1556ad5b8143a15c26067c3862fe20631c0053f (diff)
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 <alevy@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r--hw/pc_piix.c12
1 files changed, 12 insertions, 0 deletions
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 = {