amd64/67745: boot fails on compaq presario r3000z
Jung-uk Kim
jkim at niksun.com
Tue Jul 6 09:00:39 PDT 2004
The following reply was made to PR amd64/67745; it has been noted by GNATS.
From: Jung-uk Kim <jkim at niksun.com>
To: freebsd-gnats-submit at FreeBSD.org
Cc: newntrbr at ucla.edu
Subject: Re: amd64/67745: boot fails on compaq presario r3000z
Date: Tue, 6 Jul 2004 11:50:37 -0400
--Boundary-00=_Nps6AQIxCLJE8lb
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
A workaround is attached. For more verbose info, see:
http://docs.freebsd.org/cgi/mid.cgi?200407021130.58247.jkim
Cheers,
Jung-uk Kim
--Boundary-00=_Nps6AQIxCLJE8lb
Content-Type: text/plain;
charset="us-ascii";
name="r3000z.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
filename="r3000z.diff"
--- src/sys/dev/kbd/atkbdc.c.orig Fri Jul 2 11:16:41 2004
+++ src/sys/dev/kbd/atkbdc.c Fri Jul 2 11:17:12 2004
@@ -944,6 +944,7 @@
int
test_kbd_port(KBDC p)
{
+#if 0
int retry = KBD_MAXRETRY;
int again = KBD_MAXWAIT;
int c = -1;
@@ -965,11 +966,15 @@
if (verbose || bootverbose)
log(LOG_DEBUG, "kbdc: TEST_KBD_PORT status:%04x\n", c);
return c;
+#else
+ return 0;
+#endif
}
int
test_aux_port(KBDC p)
{
+#if 0
int retry = KBD_MAXRETRY;
int again = KBD_MAXWAIT;
int c = -1;
@@ -991,6 +996,9 @@
if (verbose || bootverbose)
log(LOG_DEBUG, "kbdc: TEST_AUX_PORT status:%04x\n", c);
return c;
+#else
+ return 0;
+#endif
}
int
--Boundary-00=_Nps6AQIxCLJE8lb--
More information about the freebsd-amd64
mailing list