From owner-freebsd-current@FreeBSD.ORG Wed Jan 14 10:58:04 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 18C7C16A4CE for ; Wed, 14 Jan 2004 10:58:04 -0800 (PST) Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85F3D43D7D for ; Wed, 14 Jan 2004 10:57:59 -0800 (PST) (envelope-from bde@zeta.org.au) Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) by mailman.zeta.org.au (8.9.3p2/8.8.7) with ESMTP id FAA14234; Thu, 15 Jan 2004 05:57:49 +1100 Date: Thu, 15 Jan 2004 05:57:49 +1100 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Dag-Erling =?iso-8859-1?q?Sm=F8rgrav?= In-Reply-To: Message-ID: <20040115055324.D3205@gamplex.bde.org> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE cc: me@privacy.net cc: current@freebsd.org Subject: Re: Question on quieting kernel boot 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, 14 Jan 2004 18:58:04 -0000 On Wed, 14 Jan 2004, Dag-Erling [iso-8859-1] Sm=F8rgrav wrote: > "Rob MacGregor" writes: > > I take it that's the "-m" (mute the console) and "-v" (verbose) > > options? Where can I find details on exactly what these do? > > I don't know what -m does, but -v is what I was thinking of. It sets > a variable in the kernel (bootverbose). Parts of the kernel will > print additional information at boot time (and sometimes also at run > time) if bootverbose is non-zero. bootverbose is a general verboseness flags. It may be set on or off at any time after using the debug.bootverbose sysctl. It's only relationships with booting are: - it is bogusly named "bootverbose" - it can be set at boot time by booting with -v - more messages are normally printed at boot time than later, so there is more for the flag to affect at boot time. Bruce