diff options
| author | Robert Nordier <rnordier@FreeBSD.org> | 1998-10-17 10:35:15 +0000 |
|---|---|---|
| committer | Robert Nordier <rnordier@FreeBSD.org> | 1998-10-17 10:35:15 +0000 |
| commit | 918ddbed16f7ed4fe6ef0bf9b99361a483c8b651 (patch) | |
| tree | 8d1af44431196c0303faad60b0ed91668493592e | |
| parent | 7de064209aad6d6993024e009c15b763e76613a6 (diff) | |
Notes
| -rw-r--r-- | sys/boot/i386/boot2/boot2.c | 3 | ||||
| -rw-r--r-- | sys/boot/i386/gptboot/gptboot.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/boot/i386/boot2/boot2.c b/sys/boot/i386/boot2/boot2.c index f24e19f1966e..d4ecbbeac387 100644 --- a/sys/boot/i386/boot2/boot2.c +++ b/sys/boot/i386/boot2/boot2.c @@ -14,7 +14,7 @@ */ /* - * $Id: boot2.c,v 1.9 1998/10/17 09:16:01 rnordier Exp $ + * $Id: boot2.c,v 1.10 1998/10/17 09:50:09 rnordier Exp $ */ #include <sys/param.h> @@ -328,6 +328,7 @@ parse(char *arg) printf("Keyboard: %s\n", i ? "yes" : "no"); if (!i) opts |= 1 << RBX_DUAL | 1 << RBX_SERIAL; + opts &= ~(1 << RBX_PROBEKBD); } ioctrl = opts & 1 << RBX_DUAL ? 0x3 : opts & 1 << RBX_SERIAL ? 0x2 : 0x1; diff --git a/sys/boot/i386/gptboot/gptboot.c b/sys/boot/i386/gptboot/gptboot.c index f24e19f1966e..d4ecbbeac387 100644 --- a/sys/boot/i386/gptboot/gptboot.c +++ b/sys/boot/i386/gptboot/gptboot.c @@ -14,7 +14,7 @@ */ /* - * $Id: boot2.c,v 1.9 1998/10/17 09:16:01 rnordier Exp $ + * $Id: boot2.c,v 1.10 1998/10/17 09:50:09 rnordier Exp $ */ #include <sys/param.h> @@ -328,6 +328,7 @@ parse(char *arg) printf("Keyboard: %s\n", i ? "yes" : "no"); if (!i) opts |= 1 << RBX_DUAL | 1 << RBX_SERIAL; + opts &= ~(1 << RBX_PROBEKBD); } ioctrl = opts & 1 << RBX_DUAL ? 0x3 : opts & 1 << RBX_SERIAL ? 0x2 : 0x1; |
