From: David Woodhouse Date: Fri, 8 Feb 2013 15:50:54 +0000 (+0000) Subject: Enable VGA output when settings bochs-specific mode X-Git-Tag: rel-1.7.3~84 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=0069a314b3692128dd0624d692c4740bceb7c925;p=seabios.git Enable VGA output when settings bochs-specific mode When used from OVMF+CSM, we got no video output. It appears that we were never enabling the display output except when configuring a text mode. Which never happens, in the OVMF+CSM case. Signed-off-by: David Woodhouse --- diff --git a/vgasrc/bochsvga.c b/vgasrc/bochsvga.c index bb5a64d..b0ba1ec 100644 --- a/vgasrc/bochsvga.c +++ b/vgasrc/bochsvga.c @@ -319,6 +319,7 @@ bochsvga_set_mode(struct vgamode_s *vmode_g, int flags) stdvga_sequ_mask(0x04, 0x00, 0x08); stdvga_grdc_mask(0x05, 0x20, 0x40); } + stdvga_attrindex_write(0x20); return 0; }