From 4b7235d634e44354be3ff9c435862e37d7344e8b Mon Sep 17 00:00:00 2001 From: dg Date: Mon, 7 Feb 1994 02:14:27 +0000 Subject: From: Chris Wiener When the keyboard is probed, the LED's blink quickly and "Keyboard reset failed" is printed on the console. The init routine keeps trying endlessly with the same behavior as above. I got the latest -current sup sources (06-Feb-94 12:00 GMT) to work using the old syscons.c. The following patch makes the new syscons work: --- sys/isa/syscons.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/isa') diff --git a/sys/isa/syscons.c b/sys/isa/syscons.c index a9f1705..5eb10af 100644 --- a/sys/isa/syscons.c +++ b/sys/isa/syscons.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from:@(#)syscons.c 1.3 940129 - * $Id: syscons.c,v 1.33 1994/02/02 23:10:55 ache Exp $ + * $Id: syscons.c,v 1.34 1994/02/04 10:36:15 chmr Exp $ * */ @@ -2470,7 +2470,7 @@ static int kbd_reply() int i; kbd_wait(); - for (i=0; i<50000; i++) { /* at least 300 msec, 500 msec enough */ + for (i=0; i<60000; i++) { /* at least 300 msec, 600 msec enough */ if (inb(KB_STAT) & KB_BUF_FULL) return ((u_char) inb(KB_DATA)); DELAY (10); -- cgit v1.1