diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-06-11 10:42:53 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-06-22 10:49:55 +0200 |
commit | 9e56edcf8dd1d4bc7ba2b1efb3641f36c0fad8ba (patch) | |
tree | 3b7a66efbae10c35248a9cead7925688f4c2851c /hw/vmware_vga.c | |
parent | f1dacf1cedbf0f46c13139f3961ef8a976dc71e3 (diff) |
vga: raise default vgamem size
Old size: 8 MB (traditional upstream qemu value).
New size: 16 MB (traditional qemu-kvm value).
Also adds compat properties so old machine types
keep the old default values.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/vmware_vga.c')
-rw-r--r-- | hw/vmware_vga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index f8eb46d0c1..476dc89a0c 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -1201,7 +1201,7 @@ static int pci_vmsvga_initfn(PCIDevice *dev) static Property vga_vmware_properties[] = { DEFINE_PROP_UINT32("vgamem_mb", struct pci_vmsvga_state_s, - chip.vga.vram_size_mb, 8), + chip.vga.vram_size_mb, 16), DEFINE_PROP_END_OF_LIST(), }; |