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
d4a1300276
commit
cc1cbedee1
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=477
5 changed files with 15 additions and 15 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
<!-- $Id: firewalls.sgml,v 1.7 1996-07-01 21:30:28 roberto Exp $ -->
|
<!-- $Id: firewalls.sgml,v 1.8 1996-08-12 11:48:44 peter Exp $ -->
|
||||||
<!-- The FreeBSD Documentation Project -->
|
<!-- The FreeBSD Documentation Project -->
|
||||||
|
|
||||||
<sect><heading>Firewalls<label id="firewalls"></heading>
|
<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
|
specify that packets should be logged in the filter rules, nothing
|
||||||
will happen.
|
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.
|
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 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
|
you want to log firewall activity, but do not want to be open to
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<!-- $Id: hw.sgml,v 1.35 1996-08-07 00:39:06 jkh Exp $ -->
|
<!-- $Id: hw.sgml,v 1.36 1996-08-12 11:48:46 peter Exp $ -->
|
||||||
<!-- The FreeBSD Documentation Project -->
|
<!-- The FreeBSD Documentation Project -->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
@ -1208,9 +1208,9 @@ significant distance.
|
||||||
options INET # needed for _tcp _icmpstat _ipstat
|
options INET # needed for _tcp _icmpstat _ipstat
|
||||||
# _udpstat _tcpstat _udb
|
# _udpstat _tcpstat _udb
|
||||||
options FFS #Berkeley Fast File System
|
options FFS #Berkeley Fast File System
|
||||||
options "FAT_CURSOR" #block cursor in syscons or pccons
|
options FAT_CURSOR #block cursor in syscons or pccons
|
||||||
options "SCSI_DELAY=15" #Be pessimistic about Joe SCSI device
|
options SCSI_DELAY=15 #Be pessimistic about Joe SCSI device
|
||||||
options "NCONS=2" #1 virtual consoles
|
options NCONS=2 #1 virtual consoles
|
||||||
options USERCONFIG #Allow user configuration with -c XXX
|
options USERCONFIG #Allow user configuration with -c XXX
|
||||||
|
|
||||||
config kernel root on sd0 swap on sd0 and sd1 dumps on sd0
|
config kernel root on sd0 swap on sd0 and sd1 dumps on sd0
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<!-- $Id: linuxemu.sgml,v 1.8 1996-05-24 19:33:32 jfieber Exp $ -->
|
<!-- $Id: linuxemu.sgml,v 1.9 1996-08-12 11:48:47 peter Exp $ -->
|
||||||
<!-- The FreeBSD Documentation Project -->
|
<!-- The FreeBSD Documentation Project -->
|
||||||
|
|
||||||
<chapt><heading>Linux Emulation<label id="linuxemu"></heading>
|
<chapt><heading>Linux Emulation<label id="linuxemu"></heading>
|
||||||
|
|
@ -47,7 +47,7 @@ linux loadable kernel module (LKM).
|
||||||
(c.f. /sys/i386/conf/LINT):
|
(c.f. /sys/i386/conf/LINT):
|
||||||
<tscreen>
|
<tscreen>
|
||||||
<verb>
|
<verb>
|
||||||
options "COMPAT_LINUX"
|
options COMPAT_LINUX
|
||||||
</verb>
|
</verb>
|
||||||
</tscreen>
|
</tscreen>
|
||||||
If you want to run doom or other applications
|
If you want to run doom or other applications
|
||||||
|
|
@ -124,8 +124,8 @@ linux
|
||||||
|
|
||||||
<sect1><heading>Installing Linux Emulation in 2.2-CURRENT</heading>
|
<sect1><heading>Installing Linux Emulation in 2.2-CURRENT</heading>
|
||||||
|
|
||||||
<p>In -current it is no longer necessary to specify options "LINUX"
|
<p>In -current it is no longer necessary to specify ``options LINUX''
|
||||||
or options "COMPAT_LINUX". Linux emulation is done with an LKM
|
or ``options COMPAT_LINUX''. Linux emulation is done with an LKM
|
||||||
(``Loadable Kernel Module'') so it can be installed on the fly without
|
(``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,
|
having to reboot. You will need the following things in your startup files,
|
||||||
however:
|
however:
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<!-- $Id: scsi.sgml,v 1.16 1996-08-10 17:38:37 alex Exp $ -->
|
<!-- $Id: scsi.sgml,v 1.17 1996-08-12 11:48:48 peter Exp $ -->
|
||||||
<!-- The FreeBSD Documentation Project -->
|
<!-- The FreeBSD Documentation Project -->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
@ -647,7 +647,7 @@ device cd0 #Only need one of these, the code dynamically grows
|
||||||
using a line like:
|
using a line like:
|
||||||
|
|
||||||
<verb>
|
<verb>
|
||||||
options "SCSI_DELAY=15" #Be pessimistic about Joe SCSI device
|
options SCSI_DELAY=15 #Be pessimistic about Joe SCSI device
|
||||||
</verb>
|
</verb>
|
||||||
This line sets the delay time to 15 seconds. On my own system I had to
|
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.
|
use 3 seconds minimum to get my trusty old CDROM drive to be recognized.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<!-- $Id: sio.sgml,v 1.2 1996-03-26 23:22:03 mpp Exp $ -->
|
<!-- $Id: sio.sgml,v 1.3 1996-08-12 11:48:49 peter Exp $ -->
|
||||||
<!-- The FreeBSD Documentation Project -->
|
<!-- The FreeBSD Documentation Project -->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
Here is a config snippet from a machine with
|
Here is a config snippet from a machine with
|
||||||
a Digi International PC/8 with 16550. It has 8 modems connected
|
a Digi International PC/8 with 16550. It has 8 modems connected
|
||||||
to these 8 lines, and they work just great. Do not
|
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!
|
will not work very well!
|
||||||
|
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
|
|
@ -82,7 +82,7 @@ device sio11 at isa? port 0x138 tty flags 0xb05 irq 9 vector siointr
|
||||||
<enum>
|
<enum>
|
||||||
<item>Add the line
|
<item>Add the line
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
options "COM_MULTIPORT"
|
options COM_MULTIPORT
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
to the config file.
|
to the config file.
|
||||||
</item>
|
</item>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue