SPARC console is black on white, and is centered by default.
This commit is contained in:
parent
02bc362e3e
commit
a4f0570f7d
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: BILL-THE-CAT,v 1.4 1999/04/26 04:25:38 ad Exp $
|
||||
# $NetBSD: BILL-THE-CAT,v 1.5 1999/05/19 21:05:59 ad Exp $
|
||||
# From: GENERIC,v 1.76 1999/01/17 20:45:26 pk Exp
|
||||
|
||||
include "arch/sparc/conf/std.sparc"
|
||||
|
@ -26,6 +26,8 @@ options SUN4M # sun4m - SS10, SS20, Classic, etc.
|
|||
#options RASTERCONSOLE # fast rasterop console
|
||||
#options FONT_GALLANT12x22 # the console font
|
||||
#options FONT_BOLD8x16 # a somewhat smaller font
|
||||
#options RASTERCONSOLE_FGCOL=WSCOL_BLACK
|
||||
#options RASTERCONSOLE_BGCOL=WSCOL_WHITE
|
||||
|
||||
#### System options that are the same for all ports
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: GENERIC,v 1.81 1999/05/01 14:18:35 pk Exp $
|
||||
# $NetBSD: GENERIC,v 1.82 1999/05/19 21:05:59 ad Exp $
|
||||
|
||||
include "arch/sparc/conf/std.sparc"
|
||||
|
||||
|
@ -25,6 +25,8 @@ options SUN4M # sun4m - SS10, SS20, Classic, etc.
|
|||
options RASTERCONSOLE # fast rasterop console
|
||||
options FONT_GALLANT12x22 # the console font
|
||||
#options FONT_BOLD8x16 # a somewhat smaller font
|
||||
options RASTERCONSOLE_FGCOL=WSCOL_BLACK
|
||||
options RASTERCONSOLE_BGCOL=WSCOL_WHITE
|
||||
|
||||
#### System options that are the same for all ports
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: INSTALL,v 1.6 1999/04/26 04:25:38 ad Exp $
|
||||
# $NetBSD: INSTALL,v 1.7 1999/05/19 21:06:00 ad Exp $
|
||||
#
|
||||
# from: NetBSD: GENERIC,v 1.67 1998/05/20 11:50:54 pk Exp
|
||||
#
|
||||
|
@ -39,6 +39,8 @@ options SUN4M # sun4m - SS10, SS20, Classic, etc.
|
|||
#options RASTERCONSOLE # fast rasterop console
|
||||
#options FONT_GALLANT12x22 # the console font
|
||||
#options FONT_BOLD8x16 # a somewhat smaller font
|
||||
#options RASTERCONSOLE_FGCOL=WSCOL_BLACK
|
||||
#options RASTERCONSOLE_BGCOL=WSCOL_WHITE
|
||||
|
||||
#### System options that are the same for all ports
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: fb.c,v 1.35 1999/05/19 20:34:19 ad Exp $ */
|
||||
/* $NetBSD: fb.c,v 1.36 1999/05/19 21:05:59 ad Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
|
@ -413,7 +413,7 @@ fbrcons_init(fb)
|
|||
ri->ri_forcemono = 1;
|
||||
|
||||
/* Get operations set and connect to rcons */
|
||||
if (rasops_init(ri, maxrow, maxcol, 0, 0))
|
||||
if (rasops_init(ri, maxrow, maxcol, 0, 1))
|
||||
panic("fbrcons_init: rasops_init failed!");
|
||||
|
||||
rc->rc_ops = &ri->ri_ops;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: fb.c,v 1.12 1999/05/19 20:34:19 ad Exp $ */
|
||||
/* $NetBSD: fb.c,v 1.13 1999/05/19 21:06:00 ad Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992, 1993
|
||||
|
@ -289,7 +289,7 @@ fbrcons_init(fb)
|
|||
ri->ri_forcemono = 1;
|
||||
|
||||
/* Get operations set and connect to rcons */
|
||||
if (rasops_init(ri, maxrow, maxcol, 0, 0))
|
||||
if (rasops_init(ri, maxrow, maxcol, 0, 1))
|
||||
panic("fbrcons_init: rasops_init failed!");
|
||||
|
||||
rc->rc_ops = &ri->ri_ops;
|
||||
|
|
Loading…
Reference in New Issue