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".
This commit is contained in:
parent
bf4fce1a35
commit
1afbbc7c59
@ -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
|
||||
|
@ -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
|
||||
|
@ -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:
|
||||
|
@ -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.
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user