From 8a69c85a7ea2daa19c377b2267a4e4924a85c801 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Thu, 12 Feb 1998 22:05:08 +0000 Subject: Add support for VESA mode 0x102 (800x600x4) in syscons. You can activate this using option "-b" to the boot blocks. It is smartest to compile a font into your kernel (See LINT), but not mandatory, but apart from the cursor you will see nothing on the screen until you load a font. This mode allows XF86_VGA16 to run in 800x600 mode on otherwise unsupported graphics hardware. A number of buglets in the cursor handling in syscons may become visible this way. --- sys/dev/syscons/syscons.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/syscons/syscons.h') diff --git a/sys/dev/syscons/syscons.h b/sys/dev/syscons/syscons.h index 1e0176986a0b..bbb8a1c56e15 100644 --- a/sys/dev/syscons/syscons.h +++ b/sys/dev/syscons/syscons.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons.h,v 1.35 1997/10/23 03:23:50 yokota Exp $ + * $Id: syscons.h,v 1.36 1997/11/21 11:37:07 yokota Exp $ */ #ifndef _I386_ISA_SYSCONS_H_ @@ -48,7 +48,7 @@ } #define mark_all(scp) {\ scp->start = 0;\ - scp->end = scp->xsize * scp->ysize;\ + scp->end = scp->xsize * scp->ysize - 1;\ } /* status flags */ -- cgit v1.3