Date: Tue, 6 Jul 2004 16:00:38 GMT From: Jung-uk Kim <jkim@niksun.com> To: freebsd-amd64@FreeBSD.org Subject: Re: amd64/67745: boot fails on compaq presario r3000z Message-ID: <200407061600.i66G0cUk029653@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR amd64/67745; it has been noted by GNATS. From: Jung-uk Kim <jkim@niksun.com> To: freebsd-gnats-submit@FreeBSD.org Cc: newntrbr@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--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200407061600.i66G0cUk029653>