summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1994-10-02 14:08:57 +0000
committerache <ache@FreeBSD.org>1994-10-02 14:08:57 +0000
commitf9272a2145a60cc6ae1dcac37c08650088fc5827 (patch)
tree69aede62641c3b5d92b521f54bd22bad1c226b7e /sys/dev
parentc91854d629940d0aadf677407dcc68f77cf2713e (diff)
downloadFreeBSD-src-f9272a2145a60cc6ae1dcac37c08650088fc5827.zip
FreeBSD-src-f9272a2145a60cc6ae1dcac37c08650088fc5827.tar.gz
Make fat cursor as early as possible, per Bruce suggestion
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/syscons/syscons.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c
index 230c945..92ce827 100644
--- a/sys/dev/syscons/syscons.c
+++ b/sys/dev/syscons/syscons.c
@@ -35,7 +35,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: syscons.c,v 1.60 1994/09/29 15:49:09 ache Exp $
+ * $Id: syscons.c,v 1.61 1994/10/01 02:56:19 davidg Exp $
*/
#include "sc.h"
@@ -397,11 +397,6 @@ pcattach(struct isa_device *dev)
}
}
/* get cursor going */
-#if defined(FAT_CURSOR)
- if (crtc_vga)
- cursor_shape(console[0].cursor_start,
- console[0].cursor_end);
-#endif
cursor_pos(1);
update_leds(console[0].status);
#ifdef APM
@@ -2078,6 +2073,7 @@ scinit(void)
#if defined(FAT_CURSOR)
start = 0;
end = 18;
+ cursor_shape(start, end);
#else
get_cursor_shape(&start, &end);
#endif
OpenPOWER on IntegriCloud