Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/sparc/dev Don't clear the screen when we connect ra...



details:   https://anonhg.NetBSD.org/src/rev/59f55ddfdfb4
branches:  trunk
changeset: 473050:59f55ddfdfb4
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Tue May 18 18:13:39 1999 +0000

description:
Don't clear the screen when we connect rasops; the SPARC doesn't connect
the rasops console until autoconfiguration, and it kinda sucks to have
the boot messages suddenly disappear from the screen.

diffstat:

 sys/arch/sparc/dev/fb.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 147a256a572c -r 59f55ddfdfb4 sys/arch/sparc/dev/fb.c
--- a/sys/arch/sparc/dev/fb.c   Tue May 18 18:07:25 1999 +0000
+++ b/sys/arch/sparc/dev/fb.c   Tue May 18 18:13:39 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fb.c,v 1.31 1999/05/16 21:19:33 ad Exp $ */
+/*     $NetBSD: fb.c,v 1.32 1999/05/18 18:13:39 thorpej Exp $ */
 
 /*
  * Copyright (c) 1992, 1993
@@ -413,7 +413,7 @@
        ri->ri_forcemono = 1;
 
        /* Get operations set and connect to rcons */
-       if (rasops_init(ri, maxrow, maxcol, 1, 0))
+       if (rasops_init(ri, maxrow, maxcol, 0, 0))
                panic("fbrcons_init: rasops_init failed!");
        
        rc->rc_ops = &ri->ri_ops;



Home | Main Index | Thread Index | Old Index