patch < empty_8042.patch (or what ever)
See if this helps or not.
Pekka
the patch:
--- setup.S Tue Jun 22 16:46:09 1999
+++ setup.S.new Tue Jun 22 16:46:41 1999
@@ -757,11 +757,11 @@
! with no keyboard attached...
empty_8042:
- push cx
- mov cx,#0xFFFF
+ push ecx
+ mov ecx,#0xFFFFFF
empty_8042_loop:
- dec cx
+ dec ecx
jz empty_8042_end_loop
call delay
@@ -775,7 +775,7 @@
test al,#2 ! is input buffer full?
jnz empty_8042_loop ! yes - loop
empty_8042_end_loop:
- pop cx
+ pop ecx
ret
!
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/