summaryrefslogtreecommitdiff
path: root/sys/dev/wscons/wscons_rinit.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2000-05-16 23:49:13 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2000-05-16 23:49:13 +0000
commita0654a2deddb43b17d7b134a1ee1b01fb7510fb7 (patch)
tree5e5855c85cbcdef6a8f655e834f9d94f2f82998b /sys/dev/wscons/wscons_rinit.c
parent4003f5f7165c81c13d6491fc69628ef45a48b5c2 (diff)
import newer wscons source from netbsd.
art@ said it will make his life easier in alpha rhands@ said it is not used in powerpc for now bjc@ said that it would make vax port easier mickey@ said other platforms can use it, and it's faster
Diffstat (limited to 'sys/dev/wscons/wscons_rinit.c')
-rw-r--r--sys/dev/wscons/wscons_rinit.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/wscons/wscons_rinit.c b/sys/dev/wscons/wscons_rinit.c
index af0c85b46bd..5e37e2b6a49 100644
--- a/sys/dev/wscons/wscons_rinit.c
+++ b/sys/dev/wscons/wscons_rinit.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: wscons_rinit.c,v 1.6 1997/11/06 12:26:59 niklas Exp $ */
-/* $NetBSD: wscons_rinit.c,v 1.3 1996/11/13 21:13:42 cgd Exp $ */
+/* $OpenBSD: wscons_rinit.c,v 1.7 2000/05/16 23:49:11 mickey Exp $ */
+/* $NetBSD: wscons_rinit.c,v 1.2 1998/05/14 20:49:56 drochner Exp $ */
/*
* Copyright (c) 1991, 1993
@@ -51,6 +51,7 @@
#include <dev/rcons/raster.h>
#include <dev/wscons/wscons_raster.h>
+
#include <dev/wscons/wscons_rfont.h>
void rcons_initfont __P((struct rcons *, struct raster_font *));
@@ -103,7 +104,7 @@ rcons_init(rc, mrow, mcol)
struct raster *rp = rc->rc_sp;
int i;
- rcons_initfont(rc, &CONSOLE_FONT);
+ rcons_initfont(rc, &gallant19);
i = rp->height / rc->rc_font->height;
rc->rc_maxrow = min(i, mrow);
@@ -127,7 +128,6 @@ rcons_init(rc, mrow, mcol)
rc->rc_raswidth = i;
}
- rc->rc_ras_blank = RAS_CLEAR;
rc->rc_bits = 0;
/* If cursor position given, assume it's there and drawn. */