Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/pmax/dev When the tty intialization was split out o...



details:   https://anonhg.NetBSD.org/src/rev/e325e3d00d47
branches:  trunk
changeset: 485155:e325e3d00d47
user:      mhitch <mhitch%NetBSD.org@localhost>
date:      Thu Apr 20 20:02:34 2000 +0000

description:
When the tty intialization was split out of rcons_init(), the call to
rcons_ttyinit() was never added to the pmax rasterconsole stuff.  Output
to the display using /dev/console has not been working since then.  Adding
the call to rcons_ttyinit() makes this work again.

diffstat:

 sys/arch/pmax/dev/rcons.c |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r c4348d0617e7 -r e325e3d00d47 sys/arch/pmax/dev/rcons.c
--- a/sys/arch/pmax/dev/rcons.c Thu Apr 20 18:55:50 2000 +0000
+++ b/sys/arch/pmax/dev/rcons.c Thu Apr 20 20:02:34 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rcons.c,v 1.40 2000/03/30 14:45:04 simonb Exp $        */
+/*     $NetBSD: rcons.c,v 1.41 2000/04/20 20:02:34 mhitch Exp $        */
 
 /*
  * Copyright (c) 1995
@@ -149,6 +149,7 @@
        rc.rc_deffgcolor = WSCOL_WHITE;
        rc.rc_defbgcolor = WSCOL_BLACK;
        rcons_init(&rc, 1);
+       rcons_ttyinit(fbconstty);
 }
 #endif
 



Home | Main Index | Thread Index | Old Index