From owner-cvs-all@FreeBSD.ORG Mon Feb 14 18:49:00 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E987E16A4CE; Mon, 14 Feb 2005 18:49:00 +0000 (GMT) Received: from www.portaone.com (support.portaone.com [195.70.151.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04EEE43D1D; Mon, 14 Feb 2005 18:49:00 +0000 (GMT) (envelope-from sobomax@portaone.com) Received: from [192.168.1.26] (SIRIUS-ats227-UTC.ukrtel.net [195.5.25.154]) (authenticated bits=0) by www.portaone.com (8.12.11/8.12.11) with ESMTP id j1EImtEO093783 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 14 Feb 2005 19:48:57 +0100 (CET) (envelope-from sobomax@portaone.com) Message-ID: <4210F288.3020107@portaone.com> Date: Mon, 14 Feb 2005 20:48:40 +0200 From: Maxim Sobolev Organization: Porta Software Ltd User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "David E. O'Brien" References: <200502140934.j1E9Yeq1095998@repoman.freebsd.org> In-Reply-To: <200502140934.j1E9Yeq1095998@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.80/685/Wed Jan 26 10:08:24 2005 clamav-milter version 0.80j on www.portaone.com X-Virus-Status: Clean cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/amd64/amd64 bios.c src/sys/amd64/include/pc bios.h src/sys/conf files.amd64 src/sys/dev/fb vga.c src/sys/isa syscons_isa.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Feb 2005 18:49:01 -0000 David E. O'Brien wrote: > obrien 2005-02-14 09:34:40 UTC > > FreeBSD src repository > > Modified files: (Branch: RELENG_5) > sys/conf files.amd64 > sys/dev/fb vga.c > sys/isa syscons_isa.c > Added files: (Branch: RELENG_5) > sys/amd64/amd64 bios.c > sys/amd64/include/pc bios.h > Log: > MFC: + 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. Actually ability to beep is somewhat controversal ability in its current implementation, since there is no way to disable it and at least on some machines (i.e. my current and previous notebook) there is no way to mute speaker using mixer controls either. It is very annoying when the shell beeps loudly on file completion in the situations when silence is really necessary. -Maxim > + bios_sigsearch() etc is useful for finding tables in roms. > > Revision Changes Path > 1.72.2.1 +110 -0 src/sys/amd64/amd64/bios.c (new) > 1.18.2.1 +54 -0 src/sys/amd64/include/pc/bios.h (new) > 1.47.2.1 +1 -0 src/sys/conf/files.amd64 > 1.31.2.2 +1 -5 src/sys/dev/fb/vga.c > 1.25.2.1 +7 -8 src/sys/isa/syscons_isa.c > > >