diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-02-05 14:34:37 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-02-12 08:28:22 +0000 |
commit | 7ba7e49e6a7493e1cd0fe07cc67403846d642fc5 (patch) | |
tree | 56175042ccf012b1dd1caa71f95ad7ab49ee3d17 /hw/pc.c | |
parent | 7cc050b1659545d0c87108c17f0bf78561efcf9a (diff) | |
download | qemu-7ba7e49e6a7493e1cd0fe07cc67403846d642fc5.tar.gz qemu-7ba7e49e6a7493e1cd0fe07cc67403846d642fc5.tar.bz2 qemu-7ba7e49e6a7493e1cd0fe07cc67403846d642fc5.zip |
x86,MIPS: make vmware_vga optional
Allow failure with vmware_vga device creation and use standard
VGA instead.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/pc.c')
-rw-r--r-- | hw/pc.c | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1053,10 +1053,15 @@ void pc_vga_init(PCIBus *pci_bus) isa_cirrus_vga_init(); } } else if (vmsvga_enabled) { - if (pci_bus) - pci_vmsvga_init(pci_bus); - else + if (pci_bus) { + if (!pci_vmsvga_init(pci_bus)) { + fprintf(stderr, "Warning: vmware_vga not available," + " using standard VGA instead\n"); + pci_vga_init(pci_bus); + } + } else { fprintf(stderr, "%s: vmware_vga: no PCI bus\n", __FUNCTION__); + } #ifdef CONFIG_SPICE } else if (qxl_enabled) { if (pci_bus) |