From owner-freebsd-questions@FreeBSD.ORG Mon May 1 06:24:01 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CC2016A409 for ; Mon, 1 May 2006 06:24:01 +0000 (UTC) (envelope-from parv@pair.com) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0140343D46 for ; Mon, 1 May 2006 06:24:00 +0000 (GMT) (envelope-from parv@pair.com) Received: from default.chvlva.adelphia.net ([69.160.66.115]) by mta11.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20060501062400.ZFAC9009.mta11.adelphia.net@default.chvlva.adelphia.net>; Mon, 1 May 2006 02:24:00 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 2D19DB766; Mon, 1 May 2006 02:05:00 -0400 (EDT) Date: Mon, 1 May 2006 02:05:00 -0400 From: Parv To: Garrett Cooper Message-ID: <20060501060500.GA5946@holestein.holy.cow> Mail-Followup-To: Garrett Cooper , freebsd-questions@freebsd.org References: <445581DE.50901@centtech.com> <44559034.9010702@u.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <44559034.9010702@u.washington.edu> Cc: freebsd-questions@freebsd.org Subject: Re: Boot manager beep (revisited) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 May 2006 06:24:01 -0000 in message <44559034.9010702@u.washington.edu>, wrote Garrett Cooper thusly... > > Eric Anderson wrote: > > >This thread: > >http://lists.freebsd.org/pipermail/freebsd-stable/2005-December/020572.html > > > > > >mentions a patch to disable the boot manager beep, and also > >discusses having it optional. I don't have enough asm-fu to make > >that option happen, but I can tell you, that on laptops, that > >beep is really annoying, and amazingly loud. Is this just > >waiting for an able minded person to code up the options and > >submit? > > Someone tell me how to use patch and I'll give it a shot. I sure > as hell hate that stupid pc speaker beep notification. What you need to do (for hand editing) is -- according to the patch, around 204 (in v1.14 2005/02/08 20:43:04) where 'main.10:' appears -- remove "movb $ASCII_BEL,%al" after "main:10:", delete the line "callw putchr", join the line "xorb %ah,%ah" with "main.10:". Then compile & install the new version. I hand edited the file (/usr/src/sys/boot/i386/boot0/boot0.S) based on the given patch; did building|installing of world & kernel; on reboot of Dell Inspiron 5000e laptop, there still was a beep. So the patch did not work for me. Did i miss something? - Parv --