Subject: Re: vga: chunky, non-blinking cursor by default?
To: None <tech-kern@netbsd.org>
From: Andy Doran <ad@netbsd.org>
List: tech-kern
Date: 10/02/1999 21:09:12
The result - yes: 8, no: 3.

One facetious comment by a member of core and two instances of individuals
attempting to vote more than once are duly noted. You know who you are :).
Two very greedy people want chunky *and* blinking. Until I figure out a
nice way to do all this, try this patch in the meantime:

--- sys/dev/ic/vga_subr.c.orig	Sun Sep 19 22:48:08 1999
+++ sys/dev/ic/vga_subr.c	Sat Oct  2 21:00:34 1999
@@ -146,8 +146,8 @@
 	vga_6845_write(vh, curstart, 0x10);
 	vga_6845_write(vh, curend, 0x10);
 #else
-	/* set cursor to last 2 lines */
-	vga_6845_write(vh, curstart, type->fontheight - 2);
+	/* set cursor to full height */
+	vga_6845_write(vh, curstart, 0);
 	vga_6845_write(vh, curend, type->fontheight - 1);
 #endif
 	/*

- ad