From owner-freebsd-hackers@FreeBSD.ORG Wed Nov 24 15:20:19 2004 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A582F16A4CE for ; Wed, 24 Nov 2004 15:20:19 +0000 (GMT) Received: from cs1.cs.huji.ac.il (cs1.cs.huji.ac.il [132.65.16.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FF3D43D4C for ; Wed, 24 Nov 2004 15:20:19 +0000 (GMT) (envelope-from danny@cs.huji.ac.il) Received: from pampa.cs.huji.ac.il ([132.65.80.32]) by cs1.cs.huji.ac.il with esmtp id 1CWywM-00019J-8y; Wed, 24 Nov 2004 17:20:18 +0200 X-Mailer: exmh version 2.7.0 06/18/2004 with nmh-1.0.4 To: John Baldwin In-Reply-To: Message from John Baldwin of "Wed, 24 Nov 2004 09:54:20 EST." <200411240954.20044.john@baldwin.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 24 Nov 2004 17:20:18 +0200 From: Danny Braniss Message-Id: <20041124152019.1FF3D43D4C@mx1.FreeBSD.org> cc: freebsd-hackers@freebsd.org cc: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= Subject: Re: A20/keybord/no-keyboard X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Nov 2004 15:20:19 -0000 ... > > Ah, I've fixed the btx compile. Seems some comment rototilling busted it. that's what i saw. btw, while we are at the bottom of the bleading edge, can this also be fixed: in i386/boot/boot0/boot0.S: -#ifdef SIO +#if defined(SIO) && COMSPEED != 0 /* * Initialize the serial port. bioscom preserves the driver number in DX. */ movw COMSPEED,%ax # defined by Makefile callw bioscom #endif /* SIO */ since this only works for speeds upto 9600, and breaks things for speeds above 9600. (i know, this probably should be a PR :-) danny