From owner-freebsd-amd64@FreeBSD.ORG Thu Aug 12 01:20:26 2004 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5785116A4D0 for ; Thu, 12 Aug 2004 01:20:26 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4930743D2D for ; Thu, 12 Aug 2004 01:20:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i7C1KQ1k011675 for ; Thu, 12 Aug 2004 01:20:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7C1KQvM011668; Thu, 12 Aug 2004 01:20:26 GMT (envelope-from gnats) Date: Thu, 12 Aug 2004 01:20:26 GMT Message-Id: <200408120120.i7C1KQvM011668@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: Andrew Lankford Subject: Re: amd64/67745: boot fails on compaq presario r3000z X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrew Lankford List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:20:26 -0000 The following reply was made to PR amd64/67745; it has been noted by GNATS. From: Andrew Lankford To: Cc: , Subject: Re: amd64/67745: boot fails on compaq presario r3000z Date: Wed, 11 Aug 2004 20:19:34 -0500 Instead of totally disabling test_kbd_port and test_aux_port completely with Jung-uk Kim's patch, Scott Long suggested that I try removing one or two calls to test_kbd_port at a time from atkbd.c. My first guess at the problem was the first time test_kbd_port was called in probe_keyboard(): --- atkbd.c.old Tue Aug 10 22:40:35 2004 +++ atkbd.c Tue Aug 10 22:41:07 2004 @@ -1117,7 +1117,7 @@ * to set the command byte to particular values. */ test_controller(kbdc); - test_kbd_port(kbdc); + //test_kbd_port(kbdc); err = get_kbd_echo(kbdc); This patch fixes my booting problems. Any problems with test_aux_port have most likely already been fixed by a recent commit. Andrew Lankford