From owner-freebsd-current@FreeBSD.ORG Wed Oct 27 17:59:50 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C91116A4CE for ; Wed, 27 Oct 2004 17:59:50 +0000 (GMT) Received: from creme-brulee.marcuscom.com (creme-brulee.marcuscom.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id C632243D41 for ; Wed, 27 Oct 2004 17:59:49 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from [10.2.1.2] (vpn-client-2.marcuscom.com [10.2.1.2]) i9RHvBDk029579; Wed, 27 Oct 2004 13:57:11 -0400 (EDT) (envelope-from marcus@marcuscom.com) Message-ID: <417FE215.30501@marcuscom.com> Date: Wed, 27 Oct 2004 13:59:49 -0400 From: Joe Marcus Clarke Organization: MarcusCom, Inc. User-Agent: Mozilla Thunderbird 0.8 (Macintosh/20040913) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-current@freebsd.org References: <1098850867.51833.14.camel@shumai.marcuscom.com> <1098862658.1062.3.camel@localhost> <20041027110528.T91011@treo.operax.com> <20041027173924.GB74567@dragon.nuxi.com> In-Reply-To: <20041027173924.GB74567@dragon.nuxi.com> X-Enigmail-Version: 0.86.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: multipart/mixed; boundary="------------090601080906000800040709" X-Spam-Status: No, score=-4.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, LONGWORDS autolearn=ham version=3.0.1 X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on creme-brulee.marcuscom.com cc: Vladimir Grebenschikov cc: Johan Larsson Subject: Re: Installing on a machine with no PS/2 ports (USB only) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2004 17:59:50 -0000 This is a multi-part message in MIME format. --------------090601080906000800040709 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 David O'Brien wrote: | On Wed, Oct 27, 2004 at 11:06:04AM +0200, Johan Larsson wrote: | |>We installed RC1 on a GX280 recently, and the only thing we had to do to |>get the usb keyboard working was to set the following in the loader: |> |>set hint.atkbd.0.flags="0x1" | | | This sounds like something that could be added to the Beastie boot menu. | Any one want to add it and send a patch? | Here's an untested patch. I'll be able to test this tonight. Joe - -- PGP Key : http://www.marcuscom.com/pgp.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (Darwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFBf+IVb2iPiv4Uz4cRAvulAJ9ErMh1ytA64XszYkHFNvXCIqlMoACdFbWF Fmy3+cMh+4BAV/IkNzhF/E4= =pocU -----END PGP SIGNATURE----- --------------090601080906000800040709 Content-Type: text/x-patch; x-mac-type="0"; x-mac-creator="0"; name="beastie.4th.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="beastie.4th.diff" --- beastie.4th.orig Wed Oct 27 13:57:48 2004 +++ beastie.4th Wed Oct 27 13:57:43 2004 @@ -40,6 +40,7 @@ variable bootkey variable bootacpikey +variable bootusbkey variable bootsafekey variable bootverbosekey variable bootsinglekey @@ -155,6 +156,7 @@ else -2 bootacpikey ! then + printmenuitem ." Boot FreeBSD with USB keyboard support" bootusbkey ! printmenuitem ." Boot FreeBSD in Safe Mode" bootsafekey ! printmenuitem ." Boot FreeBSD in single user mode" bootsinglekey ! printmenuitem ." Boot FreeBSD with verbose logging" bootverbosekey ! @@ -221,6 +223,10 @@ s" YES" s" acpi_load" setenv s" 0" s" hint.acpi.0.disabled" setenv then + 0 boot + then + dup bootusbkey @ = if + s" 0x1" s" hint.atkbd.0.flags" setenv 0 boot then dup bootsafekey @ = if --------------090601080906000800040709--