Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/x68k Move config_console to ensure that it is alway...



details:   https://anonhg.NetBSD.org/src/rev/19dc226e5f79
branches:  trunk
changeset: 472715:19dc226e5f79
user:      minoura <minoura%NetBSD.org@localhost>
date:      Wed May 05 13:41:19 1999 +0000

description:
Move config_console to ensure that it is always called.

diffstat:

 sys/arch/x68k/dev/ite.c      |  7 +------
 sys/arch/x68k/x68k/machdep.c |  7 ++++++-
 2 files changed, 7 insertions(+), 7 deletions(-)

diffs (42 lines):

diff -r e62fc08ae278 -r 19dc226e5f79 sys/arch/x68k/dev/ite.c
--- a/sys/arch/x68k/dev/ite.c   Wed May 05 13:38:51 1999 +0000
+++ b/sys/arch/x68k/dev/ite.c   Wed May 05 13:41:19 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ite.c,v 1.17 1999/03/30 04:25:07 minoura Exp $ */
+/*     $NetBSD: ite.c,v 1.18 1999/05/05 13:41:19 minoura Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -2405,11 +2405,6 @@
 {
        int maj;
 
-       /*
-        * bring graphics layer up.
-        */
-       config_console();
-
        /* locate the major number */
        for (maj = 0; maj < nchrdev; maj++)
                if (cdevsw[maj].d_open == iteopen)
diff -r e62fc08ae278 -r 19dc226e5f79 sys/arch/x68k/x68k/machdep.c
--- a/sys/arch/x68k/x68k/machdep.c      Wed May 05 13:38:51 1999 +0000
+++ b/sys/arch/x68k/x68k/machdep.c      Wed May 05 13:41:19 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machdep.c,v 1.65 1999/05/05 13:38:51 minoura Exp $     */
+/*     $NetBSD: machdep.c,v 1.66 1999/05/05 13:41:20 minoura Exp $     */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -214,6 +214,11 @@
        if (mmutype == MMU_68040)
                cpuspeed *= 2;  /* XXX */
 
+       /*
+        * bring graphics layer up.
+        */
+       config_console();
+
        /*
         * Initialize the console before we print anything out.
         */



Home | Main Index | Thread Index | Old Index