Message ID | 4A5AF12F.108@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 07/13/2009 04:32 AM, Avi Kivity wrote: > On 07/12/2009 09:43 PM, John Rousseau wrote: >> Losing -vga std allowed the guest to boot. > > Attached patch fixes it for me. It does as well for me. Acked-by: John Rousseau <JRRousseau@gmail.com> Thanks much! -John -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/hw/vga_int.h b/hw/vga_int.h index d715f30..1aaf5c5 100644 --- a/hw/vga_int.h +++ b/hw/vga_int.h @@ -217,5 +217,5 @@ void vga_draw_cursor_line_32(uint8_t *d1, const uint8_t *src1, extern const uint8_t sr_mask[8]; extern const uint8_t gr_mask[16]; -#define VGA_RAM_SIZE (8192 * 1024) +#define VGA_RAM_SIZE (16 * 1024 * 1024)
On 07/12/2009 09:43 PM, John Rousseau wrote: > Losing -vga std allowed the guest to boot. Attached patch fixes it for me.