summaryrefslogtreecommitdiffstats
path: root/share/doc
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1996-08-12 11:48:49 +0000
committerpeter <peter@FreeBSD.org>1996-08-12 11:48:49 +0000
commit592128dcde9d5b776c7c4f7f0d75dd30da680658 (patch)
treeccf5e30c5df30db55c01cc80a83bf64b11f1f716 /share/doc
parent47124e7ef453009ed52092a0e2f4568a759db2dd (diff)
downloadFreeBSD-src-592128dcde9d5b776c7c4f7f0d75dd30da680658.zip
FreeBSD-src-592128dcde9d5b776c7c4f7f0d75dd30da680658.tar.gz
Remove the quotes from some of the kernel options that dont need it.
eg: options "SCSI_DELAY=15" should be options SCSI_DELAY=15, as config knows about the "=" and splits it correctly into key=value for the #defines. The only options that need quotes are those that have numbers as part of the actual name, eg: "TUNE_1542" and "COMPAT_IBCS2".
Diffstat (limited to 'share/doc')
-rw-r--r--share/doc/handbook/firewalls.sgml4
-rw-r--r--share/doc/handbook/hw.sgml8
-rw-r--r--share/doc/handbook/linuxemu.sgml8
-rw-r--r--share/doc/handbook/scsi.sgml4
-rw-r--r--share/doc/handbook/sio.sgml6
5 files changed, 15 insertions, 15 deletions
diff --git a/share/doc/handbook/firewalls.sgml b/share/doc/handbook/firewalls.sgml
index 2d2d5b3..54de828 100644
--- a/share/doc/handbook/firewalls.sgml
+++ b/share/doc/handbook/firewalls.sgml
@@ -1,4 +1,4 @@
-<!-- $Id: firewalls.sgml,v 1.6 1996/06/30 02:46:44 alex Exp $ -->
+<!-- $Id: firewalls.sgml,v 1.7 1996/07/01 21:30:28 roberto Exp $ -->
<!-- The FreeBSD Documentation Project -->
<sect><heading>Firewalls<label id="firewalls"></heading>
@@ -137,7 +137,7 @@ packets through <tt>syslogd(8)</tt>. Without this option, even if you
specify that packets should be logged in the filter rules, nothing
will happen.
-<tag/options "IPFIREWALL_VERBOSE_LIMIT=10"/ Limits the number of
+<tag/options IPFIREWALL_VERBOSE_LIMIT=10/ Limits the number of
packets logged through <tt>syslogd(8)</tt> on a per entry basis.
You may wish to use this option in hostile environments in which
you want to log firewall activity, but do not want to be open to
diff --git a/share/doc/handbook/hw.sgml b/share/doc/handbook/hw.sgml
index 4949ba0..8961061 100644
--- a/share/doc/handbook/hw.sgml
+++ b/share/doc/handbook/hw.sgml
@@ -1,4 +1,4 @@
-<!-- $Id: hw.sgml,v 1.34 1996/07/20 18:42:25 joerg Exp $ -->
+<!-- $Id: hw.sgml,v 1.35 1996/08/07 00:39:06 jkh Exp $ -->
<!-- The FreeBSD Documentation Project -->
<!--
@@ -1208,9 +1208,9 @@ significant distance.
options INET # needed for _tcp _icmpstat _ipstat
# _udpstat _tcpstat _udb
options FFS #Berkeley Fast File System
- options "FAT_CURSOR" #block cursor in syscons or pccons
- options "SCSI_DELAY=15" #Be pessimistic about Joe SCSI device
- options "NCONS=2" #1 virtual consoles
+ options FAT_CURSOR #block cursor in syscons or pccons
+ options SCSI_DELAY=15 #Be pessimistic about Joe SCSI device
+ options NCONS=2 #1 virtual consoles
options USERCONFIG #Allow user configuration with -c XXX
config kernel root on sd0 swap on sd0 and sd1 dumps on sd0
diff --git a/share/doc/handbook/linuxemu.sgml b/share/doc/handbook/linuxemu.sgml
index 5652380..2d8ed14 100644
--- a/share/doc/handbook/linuxemu.sgml
+++ b/share/doc/handbook/linuxemu.sgml
@@ -1,4 +1,4 @@
-<!-- $Id: linuxemu.sgml,v 1.7 1996/05/21 04:06:00 jkh Exp $ -->
+<!-- $Id: linuxemu.sgml,v 1.8 1996/05/24 19:33:32 jfieber Exp $ -->
<!-- The FreeBSD Documentation Project -->
<chapt><heading>Linux Emulation<label id="linuxemu"></heading>
@@ -47,7 +47,7 @@ linux loadable kernel module (LKM).
(c.f. /sys/i386/conf/LINT):
<tscreen>
<verb>
-options "COMPAT_LINUX"
+options COMPAT_LINUX
</verb>
</tscreen>
If you want to run doom or other applications
@@ -124,8 +124,8 @@ linux
<sect1><heading>Installing Linux Emulation in 2.2-CURRENT</heading>
-<p>In -current it is no longer necessary to specify options "LINUX"
-or options "COMPAT_LINUX". Linux emulation is done with an LKM
+<p>In -current it is no longer necessary to specify ``options LINUX''
+or ``options COMPAT_LINUX''. Linux emulation is done with an LKM
(``Loadable Kernel Module'') so it can be installed on the fly without
having to reboot. You will need the following things in your startup files,
however:
diff --git a/share/doc/handbook/scsi.sgml b/share/doc/handbook/scsi.sgml
index e8e731b..a4945eb 100644
--- a/share/doc/handbook/scsi.sgml
+++ b/share/doc/handbook/scsi.sgml
@@ -1,4 +1,4 @@
-<!-- $Id: scsi.sgml,v 1.15 1996/07/07 02:00:48 jfieber Exp $ -->
+<!-- $Id: scsi.sgml,v 1.16 1996/08/10 17:38:37 alex Exp $ -->
<!-- The FreeBSD Documentation Project -->
<!--
@@ -647,7 +647,7 @@ device cd0 #Only need one of these, the code dynamically grows
using a line like:
<verb>
-options "SCSI_DELAY=15" #Be pessimistic about Joe SCSI device
+options SCSI_DELAY=15 #Be pessimistic about Joe SCSI device
</verb>
This line sets the delay time to 15 seconds. On my own system I had to
use 3 seconds minimum to get my trusty old CDROM drive to be recognized.
diff --git a/share/doc/handbook/sio.sgml b/share/doc/handbook/sio.sgml
index 95b2c48..ebee659 100644
--- a/share/doc/handbook/sio.sgml
+++ b/share/doc/handbook/sio.sgml
@@ -1,4 +1,4 @@
-<!-- $Id: sio.sgml,v 1.1 1996/02/16 13:28:21 jkh Exp $ -->
+<!-- $Id: sio.sgml,v 1.2 1996/03/26 23:22:03 mpp Exp $ -->
<!-- The FreeBSD Documentation Project -->
<!--
@@ -25,7 +25,7 @@
Here is a config snippet from a machine with
a Digi International PC/8 with 16550. It has 8 modems connected
to these 8 lines, and they work just great. Do not
- forget to add <tt>options "COM_MULTIPORT"</tt> or it
+ forget to add <tt>options COM_MULTIPORT</tt> or it
will not work very well!
<tscreen><verb>
@@ -82,7 +82,7 @@ device sio11 at isa? port 0x138 tty flags 0xb05 irq 9 vector siointr
<enum>
<item>Add the line
<tscreen><verb>
-options "COM_MULTIPORT"
+options COM_MULTIPORT
</verb></tscreen>
to the config file.
</item>
OpenPOWER on IntegriCloud