Source-Changes-HG archive

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

[src/netbsd-1-6]: src/sys/arch/vax/vsa Pull up revision 1.30 (requested by ra...



details:   https://anonhg.NetBSD.org/src/rev/b7a72bcc06d5
branches:  netbsd-1-6
changeset: 527868:b7a72bcc06d5
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue Jun 11 01:56:56 2002 +0000

description:
Pull up revision 1.30 (requested by ragge in ticket #237):
Missed to check all possible non-graphics bits on VS2k, causing the
machine to crash during boot. Reported and debugged with help of
Valeriy E. Ushakov.

diffstat:

 sys/arch/vax/vsa/smg.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 108a190b8ff6 -r b7a72bcc06d5 sys/arch/vax/vsa/smg.c
--- a/sys/arch/vax/vsa/smg.c    Tue Jun 11 01:55:52 2002 +0000
+++ b/sys/arch/vax/vsa/smg.c    Tue Jun 11 01:56:56 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: smg.c,v 1.29 2002/03/17 19:40:52 atatat Exp $ */
+/*     $NetBSD: smg.c,v 1.29.6.1 2002/06/11 01:56:56 lukem Exp $ */
 /*
  * Copyright (c) 1998 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -241,7 +241,8 @@
                return;
        }
        curscr = &smg_conscreen;
-       aa.console = !(vax_confdata & 0x20);
+       aa.console = (vax_confdata & (KA420_CFG_L3CON|KA420_CFG_MULTU)) == 0;
+
        aa.scrdata = &smg_screenlist;
        aa.accessops = &smg_accessops;
        callout_reset(&smg_cursor_ch, hz / 2, smg_crsr_blink, NULL);



Home | Main Index | Thread Index | Old Index