]> xenbits.xensource.com Git - qemu-xen-4.6-testing.git/commitdiff
Need to actually compile vga.c.
authorIan Jackson <iwj@mariner.uk.xensource.com>
Fri, 6 Jun 2008 16:38:04 +0000 (17:38 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Fri, 6 Jun 2008 16:38:04 +0000 (17:38 +0100)
Still one outstanding problem, which is that
vga_save_dpy_resize has the wrong prototype.

hw/vga.c
xen-hooks.mak

index e791ba2be1e57174d069a0d38fc79ae305a2d99d..fca220f3427677f564bf997d8eff525e4332219f 100644 (file)
--- a/hw/vga.c
+++ b/hw/vga.c
@@ -2163,12 +2163,11 @@ void vga_common_init(VGAState *s, DisplayState *ds, uint8_t *vga_ram_base,
     s->vram_offset = vga_ram_offset;
     s->vram_size = vga_ram_size;
     s->ds = ds;
-    ds->palette = s->last_palette;
     s->get_bpp = vga_get_bpp;
     s->get_offsets = vga_get_offsets;
     s->get_resolution = vga_get_resolution;
     graphic_console_init(s->ds, vga_update_display, vga_invalidate_display,
-                         vga_screen_dump, s);
+                         vga_screen_dump, NULL, s);
 
     vga_bios_init(s);
 }
index 8358054f5a3ec4f504ab85ac1a44c8cfc903f50f..f058ff1b8ccce538cc0498d4222b2a3bf2ddbc4c 100644 (file)
@@ -37,7 +37,4 @@ endif
 BAD_OBJS += loader.o gdbstub.o acpi.o apic.o
 BAD_OBJS += vmmouse.o vmport.o tcg* helper.o
 
-# don't compile right now:
-BAD_OBJS += vga.o
-
 OBJS := $(filter-out $(BAD_OBJS), $(OBJS))