mirror of https://github.com/xemu-project/xemu.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 <alevy@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
e1556ad5b8
commit
3827cdb1c3
12
hw/pc_piix.c
12
hw/pc_piix.c
|
@ -311,6 +311,18 @@ static QEMUMachine pc_machine_v0_14 = {
|
||||||
.desc = "Standard PC",
|
.desc = "Standard PC",
|
||||||
.init = pc_init_pci,
|
.init = pc_init_pci,
|
||||||
.max_cpus = 255,
|
.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 = {
|
static QEMUMachine pc_machine_v0_13 = {
|
||||||
|
|
Loading…
Reference in New Issue