From owner-cvs-src@FreeBSD.ORG Fri Sep 24 01:08:34 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD5A416A4CE; Fri, 24 Sep 2004 01:08:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D279D43D49; Fri, 24 Sep 2004 01:08:34 +0000 (GMT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8O18YOI083370; Fri, 24 Sep 2004 01:08:34 GMT (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8O18Y8H083369; Fri, 24 Sep 2004 01:08:34 GMT (envelope-from peter) Message-Id: <200409240108.i8O18Y8H083369@repoman.freebsd.org> From: Peter Wemm Date: Fri, 24 Sep 2004 01:08:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 bios.c src/sys/conf files.amd64 src/sys/dev/fb vga.c src/sys/isa syscons_isa.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Sep 2004 01:08:35 -0000 peter 2004-09-24 01:08:34 UTC FreeBSD src repository Modified files: sys/amd64/amd64 bios.c sys/conf files.amd64 sys/dev/fb vga.c sys/isa syscons_isa.c Log: Converge towards i386. I originally resisted creating because it was mostly irrelevant - except for the silly BIOS_PADDRTOVADDR etc macros. Along the way of working around this, I missed a few things. * Make syscons properly inherit the bios capslock/shiftlock/etc state like i386 does. Note that we cannot inherit the bios key repeat rate because that requires a bios call (which is impossible for us). * Give syscons the ability to beep on amd64. Oops. While here, make bios.c compile and add it to files.amd64. Revision Changes Path 1.72 +4 -1 src/sys/amd64/amd64/bios.c 1.49 +1 -0 src/sys/conf/files.amd64 1.32 +1 -5 src/sys/dev/fb/vga.c 1.26 +7 -8 src/sys/isa/syscons_isa.c