From owner-freebsd-doc@FreeBSD.ORG Sun Aug 7 12:49:57 2011 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 840AA1065673 for ; Sun, 7 Aug 2011 12:49:57 +0000 (UTC) (envelope-from matt.thyer@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 1ACAC8FC08 for ; Sun, 7 Aug 2011 12:49:56 +0000 (UTC) Received: by wwi36 with SMTP id 36so2699623wwi.31 for ; Sun, 07 Aug 2011 05:49:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=nLcxcNSu/ejJtYNGHcOlFHEzZW9M0iJgnpiQQ6koOBA=; b=c5T87elP7bqfZAat6ZOE5QIdl10ndsA7InPEBsdGz8i4Hm4HP6Vo2cPnI7xylXSGdL T48me5LYUN2rduYMjgyrs3ag/+9bWTmziMX1GJKG0igH/Qp8X/cURuD/xSb6s99NdXkK fkm6e/5P9l1fTRCsezJK9qiD+yd9Y2D8STVJ8= MIME-Version: 1.0 Received: by 10.216.233.92 with SMTP id o70mr2507038weq.111.1312719762146; Sun, 07 Aug 2011 05:22:42 -0700 (PDT) Received: by 10.216.19.12 with HTTP; Sun, 7 Aug 2011 05:22:42 -0700 (PDT) Date: Sun, 7 Aug 2011 21:52:42 +0930 Message-ID: From: Matt Thyer To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Correction to doc/handbook/serialconsole-setup.html X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Aug 2011 12:49:57 -0000 I've noticed an error in doc/handbook/serialconsole-setup.html (as viewed at: http://www.freebsd.org/doc/handbook/serialconsole-setup.html). Section "26.6.6.1" entitled "Setting Up the Serial Console" is specifying commands that you would type at the loader prompt and suggesting that they be added to "/boot/loader.conf". The examples use the "set" keyword when this should be omitted. A unified diff to fix the web page would be: --- serialconsole-setup.html.old 2011-08-07 21:42:08.376155000 +0930 +++ serialconsole-setup.html 2011-08-07 21:43:27.318248588 +0930 @@ -742,7 +742,7 @@ writing just one line in /boot/loader.conf:

-set console="comconsole"
+console="comconsole"
 

This will take effect regardless of the settings in the boot block discussed in the @@ -755,7 +755,7 @@

Likewise, you can specify the internal console as:

-set console="vidconsole"
+console="vidconsole"
 

If you do not set the boot loader environment variable console,