From patchwork Fri Dec 11 05:47:44 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: vmware_vga: add rom file so that it boots. Date: Thu, 10 Dec 2009 19:47:44 -0000 From: Dave Airlie X-Patchwork-Id: 40900 Message-Id: <1260510464-691-1-git-send-email-airlied@gmail.com> To: qemu-devel@nongnu.org From: Dave Airlie This just adds the rom file to the vmware SVGA chipset so it boots. Signed-off-by: Dave Airlie --- hw/vmware_vga.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index 240731a..a7e42c6 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -22,6 +22,7 @@ * THE SOFTWARE. */ #include "hw.h" +#include "loader.h" #include "console.h" #include "pci.h" #include "vmware_vga.h" @@ -1124,6 +1125,7 @@ static void vmsvga_init(struct vmsvga_state_s *s, int vga_ram_size) cpu_register_physical_memory(VBE_DISPI_LFB_PHYSICAL_ADDRESS, vga_ram_size, s->vga.vram_offset); #endif + rom_add_vga(VGABIOS_FILENAME); } static void pci_vmsvga_map_ioport(PCIDevice *pci_dev, int region_num,