diff options
author | Tom Cosgrove <tom@cvs.openbsd.org> | 2007-01-02 16:29:28 +0000 |
---|---|---|
committer | Tom Cosgrove <tom@cvs.openbsd.org> | 2007-01-02 16:29:28 +0000 |
commit | 8f55de82f9e8dc0269cd2d45ed2fd9604658f947 (patch) | |
tree | 3abbf0f6f8e0654119dedfe352cda95230404ea9 /sys/arch/i386/stand/cdboot | |
parent | 78c0f6cf242428844bc370d6ecd381edfe77240b (diff) |
Fix the keyboard problem seen on Intel Macs, where only the first
keypress is seen by boot.
It appears that on the Intel Mac, we have to issue the "check for
keystroke" BIOS call before the "get keystroke" call will get it
(unlike any other BIOS I have seen in over 20 years).
It would not have been possible to fix this problem without the
donation from Steven N. Fettig (steve (at) anywheretechnology.com);
many thanks.
Bump versions of boot, cdboot and pxeboot accordingly.
Testing kettenis@, otto@, and others; ok weingart@.
Diffstat (limited to 'sys/arch/i386/stand/cdboot')
-rw-r--r-- | sys/arch/i386/stand/cdboot/conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/cdboot/conf.c b/sys/arch/i386/stand/cdboot/conf.c index d48331cd85a..1e620e4bcb1 100644 --- a/sys/arch/i386/stand/cdboot/conf.c +++ b/sys/arch/i386/stand/cdboot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.6 2006/10/12 15:49:58 krw Exp $ */ +/* $OpenBSD: conf.c,v 1.7 2007/01/02 16:29:27 tom Exp $ */ /* * Copyright (c) 2004 Tom Cosgrove @@ -43,7 +43,7 @@ #include <dev/cons.h> #include "debug.h" -const char version[] = "1.05"; +const char version[] = "1.06"; int debug = 1; #undef _TEST |