aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNik Clayton <nik@FreeBSD.org>1998-10-26 23:53:48 +0000
committerNik Clayton <nik@FreeBSD.org>1998-10-26 23:53:48 +0000
commit0992677d94b6cbf2718241eb26c601ca256bf47b (patch)
treed7cd7d2666af12443c101ba60db7e9c8d65f1195
parentdd7b7abb9d9fc9a58a609d0095b2e33272094c45 (diff)
downloaddoc-0992677d94b6cbf2718241eb26c601ca256bf47b.tar.gz
doc-0992677d94b6cbf2718241eb26c601ca256bf47b.zip
Where kernel options ("options INET" for example) are listed, wrap them
in <literal>...</literal>.
Notes
Notes: svn path=/head/; revision=3684
-rw-r--r--en/handbook/README3
-rw-r--r--en/handbook/handbook.sgml294
-rw-r--r--en_US.ISO8859-1/books/handbook/book.sgml294
-rw-r--r--en_US.ISO_8859-1/books/handbook/book.sgml294
4 files changed, 444 insertions, 441 deletions
diff --git a/en/handbook/README b/en/handbook/README
index 86e3fecc88..f340720b71 100644
--- a/en/handbook/README
+++ b/en/handbook/README
@@ -564,3 +564,6 @@ for example,
problem. I plan to introduce a target in the Makefile (probably
something like 'handbook.id' which will automatically generate this
list doing a proper SGML parse.
+
+ 53. Where kernel options ("options INET" for example) are listed, wrap them
+ in <literal>...</literal>.
diff --git a/en/handbook/handbook.sgml b/en/handbook/handbook.sgml
index 0d3790a6a4..36d87a44aa 100644
--- a/en/handbook/handbook.sgml
+++ b/en/handbook/handbook.sgml
@@ -3247,7 +3247,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>machine "i386"</term>
+ <varlistentry><term><literal>machine "i386"</literal></term>
<listitem>
<para>The first keyword is <literal>machine</literal>, which, since FreeBSD only
runs on Intel 386 and compatible chips, is i386.</para>
@@ -3261,7 +3261,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>cpu "<replaceable>cpu_type</replaceable>"</term>
+ <varlistentry><term><literal>cpu "<replaceable>cpu_type</replaceable>"</literal></term>
<listitem>
<para>The next keyword is <literal>cpu</literal>,
@@ -3295,7 +3295,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>ident <replaceable>machine_name</replaceable></term>
+ <varlistentry><term><literal>ident <replaceable>machine_name</replaceable></literal></term>
<listitem>
<para>Next, we have <literal>ident</literal>,
@@ -3318,7 +3318,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>maxusers <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>maxusers <replaceable>number</replaceable></literal></term>
<listitem>
<para>This file sets the size of a number of important
@@ -3362,7 +3362,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>config <replaceable>kernel_name</replaceable> root on
+ <varlistentry><term><literal>config <replaceable>kernel_name</replaceable></literal> root on
<replaceable>root_device</replaceable></term>
<listitem>
@@ -3393,7 +3393,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options MATH_EMULATE</term>
+ <varlistentry><term><literal>options MATH_EMULATE</literal></term>
<listitem>
<para>This line allows the kernel to simulate a math
co-processor if your computer does not have one (386 or
@@ -3413,7 +3413,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "COMPAT_43"</term>
+ <varlistentry><term><literal>options "COMPAT_43"</literal></term>
<listitem>
<para>Compatibility with 4.3BSD. Leave this in; some
@@ -3422,7 +3422,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options BOUNCE_BUFFERS</term>
+ <varlistentry><term><literal>options BOUNCE_BUFFERS</literal></term>
<listitem>
<para>ISA devices and EISA devices operating in an ISA
@@ -3433,7 +3433,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options UCONSOLE</term>
+ <varlistentry><term><literal>options UCONSOLE</literal></term>
<listitem>
<para>Allow users to grab the console, useful for X Windows.
@@ -3444,7 +3444,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options SYSVSHM</term>
+ <varlistentry><term><literal>options SYSVSHM</literal></term>
<listitem>
<para>This option provides for System V shared memory. The
@@ -3457,7 +3457,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options SYSVSEM</term>
+ <varlistentry><term><literal>options SYSVSEM</literal></term>
<listitem>
<para>Support for System V semaphores. Less commonly used
@@ -3465,7 +3465,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options SYSVMSG</term>
+ <varlistentry><term><literal>options SYSVMSG</literal></term>
<listitem>
<para>Support for System V messages. Again, only adds a few
@@ -3499,14 +3499,14 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options FFS</term>
+ <varlistentry><term><literal>options FFS</literal></term>
<listitem>
<para>The basic hard drive filesystem; leave it in if you
boot from the hard disk.</para>
</listitem>
</varlistentry>
- <varlistentry><term>options NFS</term>
+ <varlistentry><term><literal>options NFS</literal></term>
<listitem>
<para>Network Filesystem. Unless you plan to mount
@@ -3515,7 +3515,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options MSDOSFS</term>
+ <varlistentry><term><literal>options MSDOSFS</literal></term>
<listitem>
<para>MS-DOS Filesystem. Unless you plan to mount a DOS
@@ -3529,7 +3529,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "CD9660"</term>
+ <varlistentry><term><literal>options "CD9660"</literal></term>
<listitem>
<para>ISO 9660 filesystem for CD-ROMs. Comment it out if
@@ -3540,7 +3540,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options PROCFS</term>
+ <varlistentry><term><literal>options PROCFS</literal></term>
<listitem>
<para>Process filesystem. This is a pretend filesystem
@@ -3550,7 +3550,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options MFS</term>
+ <varlistentry><term><literal>options MFS</literal></term>
<listitem>
<para>Memory-mapped file system. This is basically a RAM
@@ -3588,7 +3588,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "EXT2FS"</term>
+ <varlistentry><term><literal>options "EXT2FS"</literal></term>
<listitem>
<para>Linux's native file system. With ext2fs support you
@@ -3598,7 +3598,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options QUOTA</term>
+ <varlistentry><term><literal>options QUOTA</literal></term>
<listitem>
<para>Enable disk quotas. If you have a public access
@@ -3625,7 +3625,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>controller isa0</term>
+ <varlistentry><term><literal>controller isa0</literal></term>
<listitem>
<para>All PC's supported by FreeBSD have one of these. If
you have an IBM PS/2 (Micro Channel Architecture), then
@@ -3633,7 +3633,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller pci0</term>
+ <varlistentry><term><literal>controller pci0</literal></term>
<listitem>
<para>Include this if you have a PCI motherboard. This
@@ -3642,7 +3642,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller fdc0</term>
+ <varlistentry><term><literal>controller fdc0</literal></term>
<listitem>
<para>Floppy drive controller: <literal>fd0</literal> is the
@@ -3660,7 +3660,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller wdc0</term>
+ <varlistentry><term><literal>controller wdc0</literal></term>
<listitem>
<para>This is the primary IDE controller. <literal>wd0</literal> and <literal>wd1</literal> are the master and slave hard
@@ -3673,7 +3673,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device wcd0<anchor id="kernelconfig-atapi"></term>
+ <varlistentry><term><literal>device wcd0<anchor id="kernelconfig-atapi"></literal></term>
<listitem>
<para>This device provides IDE CD-ROM support. Be sure to
@@ -3685,19 +3685,19 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device npx0 at isa? port "IO_NPX" irq 13
- vector npxintr</term>
+ <varlistentry><term><literal>device npx0 at isa? port "IO_NPX" irq 13
+ vector npxintr</literal></term>
<listitem>
<para><literal>npx0</literal> is the interface to
the floating point math unit in FreeBSD, either the
hardware co-processor or the software math emulator. It
- is <emphasis>NOT</emphasis> optional.</para>
+ is <emphasis>not</emphasis> optional.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device wt0 at isa? port 0x300 bio irq 5 drq
- 1 vector wtintr</term>
+ <varlistentry><term><literal>device wt0 at isa? port 0x300 bio irq 5 drq
+ 1 vector wtintr</literal></term>
<listitem>
<para>Wangtek and Archive QIC-02/QIC-36 tape drive
@@ -3720,23 +3720,23 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device mcd0 at isa? port 0x300 bio
- irq 10 vector mcdintr</term>
+ <varlistentry><term><literal>device mcd0 at isa? port 0x300 bio
+ irq 10 vector mcdintr</literal></term>
<listitem>
<para>Mitsumi CD-ROM (LU002, LU005, FX001D).</para>
</listitem>
</varlistentry>
- <varlistentry><term>device scd0 at isa? port 0x230
- bio</term>
+ <varlistentry><term><literal>device scd0 at isa? port 0x230
+ bio</literal></term>
<listitem>
<para>Sony CD-ROM (CDU31, CDU33A).</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller matcd0 at isa? port ?
- bio</term>
+ <varlistentry><term><literal>controller matcd0 at isa? port ?
+ bio</literal></term>
<listitem>
<para>Matsushita/Panasonic CD-ROM (sold by Creative
@@ -3768,46 +3768,46 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>controller bt0 at isa? port
- "IO_BT0" bio irq ? vector btintr</term>
+ <varlistentry><term><literal>controller bt0 at isa? port
+ "IO_BT0" bio irq ? vector btintr</literal></term>
<listitem>
<para>Most Buslogic controllers</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller uha0 at isa? port
- "IO_UHA0" bio irq ? drq 5 vector uhaintr</term>
+ <varlistentry><term><literal>controller uha0 at isa? port
+ "IO_UHA0" bio irq ? drq 5 vector uhaintr</literal></term>
<listitem>
<para>UltraStor 14F and 34F</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller ahc0</term>
+ <varlistentry><term><literal>controller ahc0</literal></term>
<listitem>
<para>Adaptec 274x/284x/294x</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller ahb0 at isa? bio irq ?
- vector ahbintr</term>
+ <varlistentry><term><literal>controller ahb0 at isa? bio irq ?
+ vector ahbintr</literal></term>
<listitem>
<para>Adaptec 174x</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller aha0 at isa? port
- "IO_AHA0" bio irq ? drq 5 vector ahaintr</term>
+ <varlistentry><term><literal>controller aha0 at isa? port
+ "IO_AHA0" bio irq ? drq 5 vector ahaintr</literal></term>
<listitem>
<para>Adaptec 154x</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller aic0 at isa? port
- 0x340 bio irq 11 vector aicintr</term>
+ <varlistentry><term><literal>controller aic0 at isa? port
+ 0x340 bio irq 11 vector aicintr</literal></term>
<listitem>
<para>Adaptec 152x and sound cards using Adaptec
@@ -3815,8 +3815,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller nca0 at isa? port
- 0x1f88 bio irq 10 vector ncaintr</term>
+ <varlistentry><term><literal>controller nca0 at isa? port
+ 0x1f88 bio irq 10 vector ncaintr</literal></term>
<listitem>
<para>ProAudioSpectrum cards using NCR 5380 or
@@ -3824,8 +3824,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller sea0 at isa? bio irq 5
- iomem 0xc8000 iosiz 0x2000 vector seaintr</term>
+ <varlistentry><term><literal>controller sea0 at isa? bio irq 5
+ iomem 0xc8000 iosiz 0x2000 vector seaintr</literal></term>
<listitem>
<para>Seagate ST01/02 8 bit controller
@@ -3833,15 +3833,15 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller wds0 at isa? port
- 0x350 bio irq 15 drq 6 vector wdsintr</term>
+ <varlistentry><term><literal>controller wds0 at isa? port
+ 0x350 bio irq 15 drq 6 vector wdsintr</literal></term>
<listitem>
<para>Western Digital WD7000 controller</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller ncr0</term>
+ <varlistentry><term><literal>controller ncr0</literal></term>
<listitem>
<para>NCR 53C810, 53C815, 53C825, 53C860, 53C875 PCI
@@ -3853,7 +3853,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "SCSI_DELAY=15"</term>
+ <varlistentry><term><literal>options "SCSI_DELAY=15"</literal></term>
<listitem>
<para>This causes the kernel to pause 15 seconds before
@@ -3866,7 +3866,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller scbus0</term>
+ <varlistentry><term><literal>controller scbus0</literal></term>
<listitem>
<para>If you have any SCSI controllers, this line provides
@@ -3875,21 +3875,21 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device sd0</term>
+ <varlistentry><term><literal>device sd0</literal></term>
<listitem>
<para>Support for SCSI hard drives.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device st0</term>
+ <varlistentry><term><literal>device st0</literal></term>
<listitem>
<para>Support for SCSI tape drives.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device cd0</term>
+ <varlistentry><term><literal>device cd0</literal></term>
<listitem>
<para>Support for SCSI CD-ROM drives.</para>
@@ -3920,8 +3920,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device sc0 at isa? port "IO_KBD" tty irq 1
- vector scintr</term>
+ <varlistentry><term><literal>device sc0 at isa? port "IO_KBD" tty irq 1
+ vector scintr</literal></term>
<listitem>
<para><literal>sc0</literal> is the default
console driver, which resembles an SCO console. Since most
@@ -3934,8 +3934,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device vt0 at isa? port "IO_KBD" tty irq 1
- vector pcrint</term>
+ <varlistentry><term><literal>device vt0 at isa? port "IO_KBD" tty irq 1
+ vector pcrint</literal></term>
<listitem>
<para>This is a VT220-compatible console driver, backwards
@@ -3951,13 +3951,13 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options "PCVT_FREEBSD=210"</term>
+ <varlistentry><term><literal>options "PCVT_FREEBSD=210"</literal></term>
<listitem>
<para>Required with the <literal>vt0</literal> console driver.</para>
</listitem>
</varlistentry>
- <varlistentry><term>options XSERVER</term>
+ <varlistentry><term><literal>options XSERVER</literal></term>
<listitem>
<para>Only applicable with the <literal>vt0</literal> console driver. This
@@ -3971,8 +3971,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device mse0 at isa? port 0x23c tty irq 5
- vector ms</term>
+ <varlistentry><term><literal>device mse0 at isa? port 0x23c tty irq 5
+ vector ms</literal></term>
<listitem>
<para>Use this device if you have a Logitech or ATI InPort
@@ -3988,8 +3988,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device psm0 at isa? port "IO_KBD"
- conflicts tty irq 12 vector psmintr</term>
+ <varlistentry><term><literal>device psm0 at isa? port "IO_KBD"
+ conflicts tty irq 12 vector psmintr</literal></term>
<listitem>
<para>Use this device if your mouse plugs into the PS/2
@@ -4013,8 +4013,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device sio0 at isa? port "IO_COM1" tty irq
- 4 vector siointr<anchor id="kernelconfig-serial"></term>
+ <varlistentry><term><literal>device sio0 at isa? port "IO_COM1" tty irq
+ 4 vector siointr</literal><anchor id="kernelconfig-serial"></term>
<listitem>
<para><literal>sio0</literal> through <literal>sio3</literal> are the four serial ports
referred to as COM1 through COM4 in the MS-DOS world.
@@ -4038,8 +4038,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device lpt0 at isa? port? tty irq 7 vector
- lptintr</term>
+ <varlistentry><term><literal>device lpt0 at isa? port? tty irq 7 vector
+ lptintr</literal></term>
<listitem>
<para><literal>lpt0</literal> through <literal>lpt2</literal> are the three printer ports you
@@ -4063,7 +4063,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options INET</term>
+ <varlistentry><term><literal>options INET</literal></term>
<listitem>
<para>Networking support. Leave it in even if you do not
plan to be connected to a network. Most programs require
@@ -4083,29 +4083,29 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device de0</term>
+ <varlistentry><term><literal>device de0</literal></term>
<listitem>
<para>Ethernet adapters based on Digital Equipment
DC21040, DC21041 or DC21140 chips</para>
</listitem>
</varlistentry>
- <varlistentry><term>device fxp0</term>
+ <varlistentry><term><literal>device fxp0</literal></term>
<listitem>
<para>Intel EtherExpress Pro/100B</para>
</listitem>
</varlistentry>
- <varlistentry><term>device vx0</term>
+ <varlistentry><term><literal>device vx0</literal></term>
<listitem>
<para>3Com 3C590 and 3C595 (buggy)</para>
</listitem>
</varlistentry>
- <varlistentry><term>device cx0 at isa? port 0x240 net
- irq 15 drq 7 vector cxintr</term>
+ <varlistentry><term><literal>device cx0 at isa? port 0x240 net
+ irq 15 drq 7 vector cxintr</literal></term>
<listitem>
<para>Cronyx/Sigma multiport sync/async (with Cisco
@@ -4113,8 +4113,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device ed0 at isa? port 0x280 net
- irq 5 iomem 0xd8000 vector edintr</term>
+ <varlistentry><term><literal>device ed0 at isa? port 0x280 net
+ irq 5 iomem 0xd8000 vector edintr</literal></term>
<listitem>
<para>Western Digital and SMC 80xx and 8216; Novell
@@ -4123,48 +4123,48 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device el0 at isa? port 0x300 net
- irq 9 vector elintr</term>
+ <varlistentry><term><literal>device el0 at isa? port 0x300 net
+ irq 9 vector elintr</literal></term>
<listitem>
<para>3Com 3C501 (slow!)</para>
</listitem>
</varlistentry>
- <varlistentry><term>device eg0 at isa? port 0x310 net
- irq 5 vector egintr</term>
+ <varlistentry><term><literal>device eg0 at isa? port 0x310 net
+ irq 5 vector egintr</literal></term>
<listitem>
<para>3Com 3C505</para>
</listitem>
</varlistentry>
- <varlistentry><term>device ep0 at isa? port 0x300 net
- irq 10 vector epintr</term>
+ <varlistentry><term><literal>device ep0 at isa? port 0x300 net
+ irq 10 vector epintr</literal></term>
<listitem>
<para>3Com 3C509 (buggy)</para>
</listitem>
</varlistentry>
- <varlistentry><term>device fe0 at isa? port 0x240 net
- irq ? vector feintr</term>
+ <varlistentry><term><literal>device fe0 at isa? port 0x240 net
+ irq ? vector feintr</literal></term>
<listitem>
<para>Fujitsu MB86960A/MB86965A Ethernet</para>
</listitem>
</varlistentry>
- <varlistentry><term>device fea0 at isa? net irq ? vector
- feaintr</term>
+ <varlistentry><term><literal>device fea0 at isa? net irq ? vector
+ feaintr</literal></term>
<listitem>
<para>DEC DEFEA EISA FDDI adapter</para>
</listitem>
</varlistentry>
- <varlistentry><term>device ie0 at isa? port 0x360 net
- irq 7 iomem 0xd0000 vector ieintr</term>
+ <varlistentry><term><literal>device ie0 at isa? port 0x360 net
+ irq 7 iomem 0xd0000 vector ieintr</literal></term>
<listitem>
<para>AT&amp;T StarLAN 10 and EN100; 3Com 3C507;
@@ -4172,17 +4172,17 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device ix0 at isa? port 0x300 net
+ <varlistentry><term><literal>device ix0 at isa? port 0x300 net
irq 10 iomem 0xd0000 iosiz 32768 vector
- ixintr</term>
+ ixintr</literal></term>
<listitem>
<para>Intel EtherExpress 16</para>
</listitem>
</varlistentry>
- <varlistentry><term>device le0 at isa? port 0x300 net
- irq 5 iomem 0xd0000 vector le_intr</term>
+ <varlistentry><term><literal>device le0 at isa? port 0x300 net
+ irq 5 iomem 0xd0000 vector le_intr</literal></term>
<listitem>
<para>Digital Equipment EtherWorks 2 and EtherWorks
@@ -4191,8 +4191,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device lnc0 at isa? port 0x300 net
- irq 10 drq 0 vector lncintr</term>
+ <varlistentry><term><literal>device lnc0 at isa? port 0x300 net
+ irq 10 drq 0 vector lncintr</literal></term>
<listitem>
<para>Lance/PCnet cards (Isolan, Novell NE2100,
@@ -4200,8 +4200,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device ze0 at isa? port 0x300 net
- irq 5 iomem 0xd8000 vector zeintr</term>
+ <varlistentry><term><literal>device ze0 at isa? port 0x300 net
+ irq 5 iomem 0xd8000 vector zeintr</literal></term>
<listitem>
<para>IBM/National Semiconductor PCMCIA ethernet
@@ -4209,8 +4209,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device zp0 at isa? port 0x300 net
- irq 10 iomem 0xd8000 vector zpintr</term>
+ <varlistentry><term><literal>device zp0 at isa? port 0x300 net
+ irq 10 iomem 0xd8000 vector zpintr</literal></term>
<listitem>
<para>3Com PCMCIA Etherlink III</para>
@@ -4227,7 +4227,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device loop</term>
+ <varlistentry><term><literal>pseudo-device loop</literal></term>
<listitem>
<para><literal>loop</literal> is the generic
@@ -4237,7 +4237,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device ether</term>
+ <varlistentry><term><literal>pseudo-device ether</literal></term>
<listitem>
<para><literal>ether</literal> is only needed if
@@ -4246,8 +4246,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device sl
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device sl
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para><literal>sl</literal> is for SLIP (Serial
@@ -4264,8 +4264,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device ppp
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device ppp
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para><literal>ppp</literal> is for kernel-mode
@@ -4281,8 +4281,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device tun
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device tun
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para><literal>tun</literal> is used by the
@@ -4296,8 +4296,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device bpfilter
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device bpfilter
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para>Berkeley packet filter. This pseudo-device allows
@@ -4329,23 +4329,23 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>controller snd0</term>
+ <varlistentry><term><literal>controller snd0</literal></term>
<listitem>
<para>Generic sound driver code. Required for all of the
following sound cards except <literal>pca</literal>.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device pas0 at isa? port 0x388 irq 10 drq 6
- vector pasintr</term>
+ <varlistentry><term><literal>device pas0 at isa? port 0x388 irq 10 drq 6
+ vector pasintr</literal></term>
<listitem>
<para>ProAudioSpectrum digital audio and MIDI.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device sb0 at isa? port 0x220 irq 7
- conflicts drq 1 vector sbintr</term>
+ <varlistentry><term><literal>device sb0 at isa? port 0x220 irq 7
+ conflicts drq 1 vector sbintr</literal></term>
<listitem>
<para>SoundBlaster digital audio.</para>
@@ -4361,7 +4361,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device sbxvi0 at isa? drq 5</term>
+ <varlistentry><term><literal>device sbxvi0 at isa? drq 5</literal></term>
<listitem>
<para>SoundBlaster 16 digital 16-bit audio.</para>
@@ -4375,7 +4375,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device sbmidi0 at isa? port 0x330</term>
+ <varlistentry><term><literal>device sbmidi0 at isa? port 0x330</literal></term>
<listitem>
<para>SoundBlaster 16 MIDI interface. If you have a
@@ -4384,24 +4384,24 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device gus0 at isa? port 0x220 irq 10 drq 1
- vector gusintr</term>
+ <varlistentry><term><literal>device gus0 at isa? port 0x220 irq 10 drq 1
+ vector gusintr</literal></term>
<listitem>
<para>Gravis Ultrasound.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device mss0 at isa? port 0x530 irq 10 drq 1
- vector adintr</term>
+ <varlistentry><term><literal>device mss0 at isa? port 0x530 irq 10 drq 1
+ vector adintr</literal></term>
<listitem>
<para>Microsoft Sound System.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device opl0 at isa? port 0x388
- conflicts</term>
+ <varlistentry><term><literal>device opl0 at isa? port 0x388
+ conflicts</literal></term>
<listitem>
<para>AdLib FM-synthesis audio. Include this line for
@@ -4411,24 +4411,24 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device mpu0 at isa? port 0x330 irq 6 drq
- 0</term>
+ <varlistentry><term><literal>device mpu0 at isa? port 0x330 irq 6 drq
+ 0</literal></term>
<listitem>
<para>Roland MPU-401 stand-alone card.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device uart0 at isa? port 0x330 irq 5 vector
- "m6850intr"</term>
+ <varlistentry><term><literal>device uart0 at isa? port 0x330 irq 5 vector
+ "m6850intr"</literal></term>
<listitem>
<para>Stand-alone 6850 UART for MIDI.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device pca0 at isa? port "IO_TIMER1"
- tty<anchor id="kernelconfig-pcaudio"></term>
+ <varlistentry><term><literal>device pca0 at isa? port "IO_TIMER1"
+ tty</literal><anchor id="kernelconfig-pcaudio"></term>
<listitem>
<para>Digital audio through PC speaker. This is going to be
@@ -4461,7 +4461,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>pseudo-device gzip</term>
+ <varlistentry><term><literal>pseudo-device gzip</literal></term>
<listitem>
<para><literal>gzip</literal> allows you to run
FreeBSD programs that have been compressed with <command>gzip</command>. The programs in
@@ -4470,7 +4470,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device log</term>
+ <varlistentry><term><literal>pseudo-device log</literal></term>
<listitem>
<para><literal>log</literal> is used for logging
@@ -4478,8 +4478,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device pty
- <replaceable>number</replaceable><anchor id="kernelconfig-ptys"></term>
+ <varlistentry><term><literal>pseudo-device pty
+ <replaceable>number</replaceable></literal><anchor id="kernelconfig-ptys"></term>
<listitem>
<para><literal>pty</literal> is a
@@ -4495,8 +4495,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device snp
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device snp
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para>Snoop device. This pseudo-device allows one terminal
@@ -4509,7 +4509,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device vn</term>
+ <varlistentry><term><literal>pseudo-device vn</literal></term>
<listitem>
<para>Vnode driver. Allows a file to be treated as a device
@@ -4520,8 +4520,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device ccd
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device ccd
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para>Concatenated disks. This pseudo-device allows you to
@@ -4550,13 +4550,13 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device joy0 at isa? port "IO_GAME"</term>
+ <varlistentry><term><literal>device joy0 at isa? port "IO_GAME"</literal></term>
<listitem>
<para>PC joystick device.</para>
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device speaker</term>
+ <varlistentry><term><literal>pseudo-device speaker</literal></term>
<listitem>
<para>Supports IBM BASIC-style noises through the PC
@@ -5833,14 +5833,14 @@ FreeBSD BUILT-19950429 (GR386) #0: Sat Apr 29 17:50:09 SAT 1995</screen>
<variablelist>
- <varlistentry><term>options IPFIREWALL</term>
+ <varlistentry><term><literal>options IPFIREWALL</literal></term>
<listitem>
<para>Compiles into the kernel the code for packet
filtering.</para>
</listitem>
</varlistentry>
- <varlistentry><term>options IPFIREWALL_VERBOSE</term>
+ <varlistentry><term><literal>options IPFIREWALL_VERBOSE</literal></term>
<listitem>
<para>Enables code to allow logging of packets through
@@ -5850,7 +5850,7 @@ FreeBSD BUILT-19950429 (GR386) #0: Sat Apr 29 17:50:09 SAT 1995</screen>
</listitem>
</varlistentry>
- <varlistentry><term>options IPFIREWALL_VERBOSE_LIMIT=10</term>
+ <varlistentry><term><literal>options IPFIREWALL_VERBOSE_LIMIT=10</literal></term>
<listitem>
<para>Limits the number of packets logged through
@@ -27930,7 +27930,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Date created: 5 December 1994
# Whom: asami
#
-# $Id: handbook.sgml,v 1.52 1998-10-26 23:53:20 nik Exp $
+# $Id: handbook.sgml,v 1.53 1998-10-26 23:53:47 nik Exp $
#
DISTNAME= oneko-1.1b
diff --git a/en_US.ISO8859-1/books/handbook/book.sgml b/en_US.ISO8859-1/books/handbook/book.sgml
index 0f922ab68a..7c962f339c 100644
--- a/en_US.ISO8859-1/books/handbook/book.sgml
+++ b/en_US.ISO8859-1/books/handbook/book.sgml
@@ -3247,7 +3247,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>machine "i386"</term>
+ <varlistentry><term><literal>machine "i386"</literal></term>
<listitem>
<para>The first keyword is <literal>machine</literal>, which, since FreeBSD only
runs on Intel 386 and compatible chips, is i386.</para>
@@ -3261,7 +3261,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>cpu "<replaceable>cpu_type</replaceable>"</term>
+ <varlistentry><term><literal>cpu "<replaceable>cpu_type</replaceable>"</literal></term>
<listitem>
<para>The next keyword is <literal>cpu</literal>,
@@ -3295,7 +3295,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>ident <replaceable>machine_name</replaceable></term>
+ <varlistentry><term><literal>ident <replaceable>machine_name</replaceable></literal></term>
<listitem>
<para>Next, we have <literal>ident</literal>,
@@ -3318,7 +3318,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>maxusers <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>maxusers <replaceable>number</replaceable></literal></term>
<listitem>
<para>This file sets the size of a number of important
@@ -3362,7 +3362,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>config <replaceable>kernel_name</replaceable> root on
+ <varlistentry><term><literal>config <replaceable>kernel_name</replaceable></literal> root on
<replaceable>root_device</replaceable></term>
<listitem>
@@ -3393,7 +3393,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options MATH_EMULATE</term>
+ <varlistentry><term><literal>options MATH_EMULATE</literal></term>
<listitem>
<para>This line allows the kernel to simulate a math
co-processor if your computer does not have one (386 or
@@ -3413,7 +3413,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "COMPAT_43"</term>
+ <varlistentry><term><literal>options "COMPAT_43"</literal></term>
<listitem>
<para>Compatibility with 4.3BSD. Leave this in; some
@@ -3422,7 +3422,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options BOUNCE_BUFFERS</term>
+ <varlistentry><term><literal>options BOUNCE_BUFFERS</literal></term>
<listitem>
<para>ISA devices and EISA devices operating in an ISA
@@ -3433,7 +3433,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options UCONSOLE</term>
+ <varlistentry><term><literal>options UCONSOLE</literal></term>
<listitem>
<para>Allow users to grab the console, useful for X Windows.
@@ -3444,7 +3444,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options SYSVSHM</term>
+ <varlistentry><term><literal>options SYSVSHM</literal></term>
<listitem>
<para>This option provides for System V shared memory. The
@@ -3457,7 +3457,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options SYSVSEM</term>
+ <varlistentry><term><literal>options SYSVSEM</literal></term>
<listitem>
<para>Support for System V semaphores. Less commonly used
@@ -3465,7 +3465,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options SYSVMSG</term>
+ <varlistentry><term><literal>options SYSVMSG</literal></term>
<listitem>
<para>Support for System V messages. Again, only adds a few
@@ -3499,14 +3499,14 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options FFS</term>
+ <varlistentry><term><literal>options FFS</literal></term>
<listitem>
<para>The basic hard drive filesystem; leave it in if you
boot from the hard disk.</para>
</listitem>
</varlistentry>
- <varlistentry><term>options NFS</term>
+ <varlistentry><term><literal>options NFS</literal></term>
<listitem>
<para>Network Filesystem. Unless you plan to mount
@@ -3515,7 +3515,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options MSDOSFS</term>
+ <varlistentry><term><literal>options MSDOSFS</literal></term>
<listitem>
<para>MS-DOS Filesystem. Unless you plan to mount a DOS
@@ -3529,7 +3529,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "CD9660"</term>
+ <varlistentry><term><literal>options "CD9660"</literal></term>
<listitem>
<para>ISO 9660 filesystem for CD-ROMs. Comment it out if
@@ -3540,7 +3540,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options PROCFS</term>
+ <varlistentry><term><literal>options PROCFS</literal></term>
<listitem>
<para>Process filesystem. This is a pretend filesystem
@@ -3550,7 +3550,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options MFS</term>
+ <varlistentry><term><literal>options MFS</literal></term>
<listitem>
<para>Memory-mapped file system. This is basically a RAM
@@ -3588,7 +3588,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "EXT2FS"</term>
+ <varlistentry><term><literal>options "EXT2FS"</literal></term>
<listitem>
<para>Linux's native file system. With ext2fs support you
@@ -3598,7 +3598,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options QUOTA</term>
+ <varlistentry><term><literal>options QUOTA</literal></term>
<listitem>
<para>Enable disk quotas. If you have a public access
@@ -3625,7 +3625,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>controller isa0</term>
+ <varlistentry><term><literal>controller isa0</literal></term>
<listitem>
<para>All PC's supported by FreeBSD have one of these. If
you have an IBM PS/2 (Micro Channel Architecture), then
@@ -3633,7 +3633,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller pci0</term>
+ <varlistentry><term><literal>controller pci0</literal></term>
<listitem>
<para>Include this if you have a PCI motherboard. This
@@ -3642,7 +3642,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller fdc0</term>
+ <varlistentry><term><literal>controller fdc0</literal></term>
<listitem>
<para>Floppy drive controller: <literal>fd0</literal> is the
@@ -3660,7 +3660,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller wdc0</term>
+ <varlistentry><term><literal>controller wdc0</literal></term>
<listitem>
<para>This is the primary IDE controller. <literal>wd0</literal> and <literal>wd1</literal> are the master and slave hard
@@ -3673,7 +3673,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device wcd0<anchor id="kernelconfig-atapi"></term>
+ <varlistentry><term><literal>device wcd0<anchor id="kernelconfig-atapi"></literal></term>
<listitem>
<para>This device provides IDE CD-ROM support. Be sure to
@@ -3685,19 +3685,19 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device npx0 at isa? port "IO_NPX" irq 13
- vector npxintr</term>
+ <varlistentry><term><literal>device npx0 at isa? port "IO_NPX" irq 13
+ vector npxintr</literal></term>
<listitem>
<para><literal>npx0</literal> is the interface to
the floating point math unit in FreeBSD, either the
hardware co-processor or the software math emulator. It
- is <emphasis>NOT</emphasis> optional.</para>
+ is <emphasis>not</emphasis> optional.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device wt0 at isa? port 0x300 bio irq 5 drq
- 1 vector wtintr</term>
+ <varlistentry><term><literal>device wt0 at isa? port 0x300 bio irq 5 drq
+ 1 vector wtintr</literal></term>
<listitem>
<para>Wangtek and Archive QIC-02/QIC-36 tape drive
@@ -3720,23 +3720,23 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device mcd0 at isa? port 0x300 bio
- irq 10 vector mcdintr</term>
+ <varlistentry><term><literal>device mcd0 at isa? port 0x300 bio
+ irq 10 vector mcdintr</literal></term>
<listitem>
<para>Mitsumi CD-ROM (LU002, LU005, FX001D).</para>
</listitem>
</varlistentry>
- <varlistentry><term>device scd0 at isa? port 0x230
- bio</term>
+ <varlistentry><term><literal>device scd0 at isa? port 0x230
+ bio</literal></term>
<listitem>
<para>Sony CD-ROM (CDU31, CDU33A).</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller matcd0 at isa? port ?
- bio</term>
+ <varlistentry><term><literal>controller matcd0 at isa? port ?
+ bio</literal></term>
<listitem>
<para>Matsushita/Panasonic CD-ROM (sold by Creative
@@ -3768,46 +3768,46 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>controller bt0 at isa? port
- "IO_BT0" bio irq ? vector btintr</term>
+ <varlistentry><term><literal>controller bt0 at isa? port
+ "IO_BT0" bio irq ? vector btintr</literal></term>
<listitem>
<para>Most Buslogic controllers</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller uha0 at isa? port
- "IO_UHA0" bio irq ? drq 5 vector uhaintr</term>
+ <varlistentry><term><literal>controller uha0 at isa? port
+ "IO_UHA0" bio irq ? drq 5 vector uhaintr</literal></term>
<listitem>
<para>UltraStor 14F and 34F</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller ahc0</term>
+ <varlistentry><term><literal>controller ahc0</literal></term>
<listitem>
<para>Adaptec 274x/284x/294x</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller ahb0 at isa? bio irq ?
- vector ahbintr</term>
+ <varlistentry><term><literal>controller ahb0 at isa? bio irq ?
+ vector ahbintr</literal></term>
<listitem>
<para>Adaptec 174x</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller aha0 at isa? port
- "IO_AHA0" bio irq ? drq 5 vector ahaintr</term>
+ <varlistentry><term><literal>controller aha0 at isa? port
+ "IO_AHA0" bio irq ? drq 5 vector ahaintr</literal></term>
<listitem>
<para>Adaptec 154x</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller aic0 at isa? port
- 0x340 bio irq 11 vector aicintr</term>
+ <varlistentry><term><literal>controller aic0 at isa? port
+ 0x340 bio irq 11 vector aicintr</literal></term>
<listitem>
<para>Adaptec 152x and sound cards using Adaptec
@@ -3815,8 +3815,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller nca0 at isa? port
- 0x1f88 bio irq 10 vector ncaintr</term>
+ <varlistentry><term><literal>controller nca0 at isa? port
+ 0x1f88 bio irq 10 vector ncaintr</literal></term>
<listitem>
<para>ProAudioSpectrum cards using NCR 5380 or
@@ -3824,8 +3824,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller sea0 at isa? bio irq 5
- iomem 0xc8000 iosiz 0x2000 vector seaintr</term>
+ <varlistentry><term><literal>controller sea0 at isa? bio irq 5
+ iomem 0xc8000 iosiz 0x2000 vector seaintr</literal></term>
<listitem>
<para>Seagate ST01/02 8 bit controller
@@ -3833,15 +3833,15 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller wds0 at isa? port
- 0x350 bio irq 15 drq 6 vector wdsintr</term>
+ <varlistentry><term><literal>controller wds0 at isa? port
+ 0x350 bio irq 15 drq 6 vector wdsintr</literal></term>
<listitem>
<para>Western Digital WD7000 controller</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller ncr0</term>
+ <varlistentry><term><literal>controller ncr0</literal></term>
<listitem>
<para>NCR 53C810, 53C815, 53C825, 53C860, 53C875 PCI
@@ -3853,7 +3853,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "SCSI_DELAY=15"</term>
+ <varlistentry><term><literal>options "SCSI_DELAY=15"</literal></term>
<listitem>
<para>This causes the kernel to pause 15 seconds before
@@ -3866,7 +3866,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller scbus0</term>
+ <varlistentry><term><literal>controller scbus0</literal></term>
<listitem>
<para>If you have any SCSI controllers, this line provides
@@ -3875,21 +3875,21 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device sd0</term>
+ <varlistentry><term><literal>device sd0</literal></term>
<listitem>
<para>Support for SCSI hard drives.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device st0</term>
+ <varlistentry><term><literal>device st0</literal></term>
<listitem>
<para>Support for SCSI tape drives.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device cd0</term>
+ <varlistentry><term><literal>device cd0</literal></term>
<listitem>
<para>Support for SCSI CD-ROM drives.</para>
@@ -3920,8 +3920,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device sc0 at isa? port "IO_KBD" tty irq 1
- vector scintr</term>
+ <varlistentry><term><literal>device sc0 at isa? port "IO_KBD" tty irq 1
+ vector scintr</literal></term>
<listitem>
<para><literal>sc0</literal> is the default
console driver, which resembles an SCO console. Since most
@@ -3934,8 +3934,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device vt0 at isa? port "IO_KBD" tty irq 1
- vector pcrint</term>
+ <varlistentry><term><literal>device vt0 at isa? port "IO_KBD" tty irq 1
+ vector pcrint</literal></term>
<listitem>
<para>This is a VT220-compatible console driver, backwards
@@ -3951,13 +3951,13 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options "PCVT_FREEBSD=210"</term>
+ <varlistentry><term><literal>options "PCVT_FREEBSD=210"</literal></term>
<listitem>
<para>Required with the <literal>vt0</literal> console driver.</para>
</listitem>
</varlistentry>
- <varlistentry><term>options XSERVER</term>
+ <varlistentry><term><literal>options XSERVER</literal></term>
<listitem>
<para>Only applicable with the <literal>vt0</literal> console driver. This
@@ -3971,8 +3971,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device mse0 at isa? port 0x23c tty irq 5
- vector ms</term>
+ <varlistentry><term><literal>device mse0 at isa? port 0x23c tty irq 5
+ vector ms</literal></term>
<listitem>
<para>Use this device if you have a Logitech or ATI InPort
@@ -3988,8 +3988,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device psm0 at isa? port "IO_KBD"
- conflicts tty irq 12 vector psmintr</term>
+ <varlistentry><term><literal>device psm0 at isa? port "IO_KBD"
+ conflicts tty irq 12 vector psmintr</literal></term>
<listitem>
<para>Use this device if your mouse plugs into the PS/2
@@ -4013,8 +4013,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device sio0 at isa? port "IO_COM1" tty irq
- 4 vector siointr<anchor id="kernelconfig-serial"></term>
+ <varlistentry><term><literal>device sio0 at isa? port "IO_COM1" tty irq
+ 4 vector siointr</literal><anchor id="kernelconfig-serial"></term>
<listitem>
<para><literal>sio0</literal> through <literal>sio3</literal> are the four serial ports
referred to as COM1 through COM4 in the MS-DOS world.
@@ -4038,8 +4038,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device lpt0 at isa? port? tty irq 7 vector
- lptintr</term>
+ <varlistentry><term><literal>device lpt0 at isa? port? tty irq 7 vector
+ lptintr</literal></term>
<listitem>
<para><literal>lpt0</literal> through <literal>lpt2</literal> are the three printer ports you
@@ -4063,7 +4063,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options INET</term>
+ <varlistentry><term><literal>options INET</literal></term>
<listitem>
<para>Networking support. Leave it in even if you do not
plan to be connected to a network. Most programs require
@@ -4083,29 +4083,29 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device de0</term>
+ <varlistentry><term><literal>device de0</literal></term>
<listitem>
<para>Ethernet adapters based on Digital Equipment
DC21040, DC21041 or DC21140 chips</para>
</listitem>
</varlistentry>
- <varlistentry><term>device fxp0</term>
+ <varlistentry><term><literal>device fxp0</literal></term>
<listitem>
<para>Intel EtherExpress Pro/100B</para>
</listitem>
</varlistentry>
- <varlistentry><term>device vx0</term>
+ <varlistentry><term><literal>device vx0</literal></term>
<listitem>
<para>3Com 3C590 and 3C595 (buggy)</para>
</listitem>
</varlistentry>
- <varlistentry><term>device cx0 at isa? port 0x240 net
- irq 15 drq 7 vector cxintr</term>
+ <varlistentry><term><literal>device cx0 at isa? port 0x240 net
+ irq 15 drq 7 vector cxintr</literal></term>
<listitem>
<para>Cronyx/Sigma multiport sync/async (with Cisco
@@ -4113,8 +4113,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device ed0 at isa? port 0x280 net
- irq 5 iomem 0xd8000 vector edintr</term>
+ <varlistentry><term><literal>device ed0 at isa? port 0x280 net
+ irq 5 iomem 0xd8000 vector edintr</literal></term>
<listitem>
<para>Western Digital and SMC 80xx and 8216; Novell
@@ -4123,48 +4123,48 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device el0 at isa? port 0x300 net
- irq 9 vector elintr</term>
+ <varlistentry><term><literal>device el0 at isa? port 0x300 net
+ irq 9 vector elintr</literal></term>
<listitem>
<para>3Com 3C501 (slow!)</para>
</listitem>
</varlistentry>
- <varlistentry><term>device eg0 at isa? port 0x310 net
- irq 5 vector egintr</term>
+ <varlistentry><term><literal>device eg0 at isa? port 0x310 net
+ irq 5 vector egintr</literal></term>
<listitem>
<para>3Com 3C505</para>
</listitem>
</varlistentry>
- <varlistentry><term>device ep0 at isa? port 0x300 net
- irq 10 vector epintr</term>
+ <varlistentry><term><literal>device ep0 at isa? port 0x300 net
+ irq 10 vector epintr</literal></term>
<listitem>
<para>3Com 3C509 (buggy)</para>
</listitem>
</varlistentry>
- <varlistentry><term>device fe0 at isa? port 0x240 net
- irq ? vector feintr</term>
+ <varlistentry><term><literal>device fe0 at isa? port 0x240 net
+ irq ? vector feintr</literal></term>
<listitem>
<para>Fujitsu MB86960A/MB86965A Ethernet</para>
</listitem>
</varlistentry>
- <varlistentry><term>device fea0 at isa? net irq ? vector
- feaintr</term>
+ <varlistentry><term><literal>device fea0 at isa? net irq ? vector
+ feaintr</literal></term>
<listitem>
<para>DEC DEFEA EISA FDDI adapter</para>
</listitem>
</varlistentry>
- <varlistentry><term>device ie0 at isa? port 0x360 net
- irq 7 iomem 0xd0000 vector ieintr</term>
+ <varlistentry><term><literal>device ie0 at isa? port 0x360 net
+ irq 7 iomem 0xd0000 vector ieintr</literal></term>
<listitem>
<para>AT&amp;T StarLAN 10 and EN100; 3Com 3C507;
@@ -4172,17 +4172,17 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device ix0 at isa? port 0x300 net
+ <varlistentry><term><literal>device ix0 at isa? port 0x300 net
irq 10 iomem 0xd0000 iosiz 32768 vector
- ixintr</term>
+ ixintr</literal></term>
<listitem>
<para>Intel EtherExpress 16</para>
</listitem>
</varlistentry>
- <varlistentry><term>device le0 at isa? port 0x300 net
- irq 5 iomem 0xd0000 vector le_intr</term>
+ <varlistentry><term><literal>device le0 at isa? port 0x300 net
+ irq 5 iomem 0xd0000 vector le_intr</literal></term>
<listitem>
<para>Digital Equipment EtherWorks 2 and EtherWorks
@@ -4191,8 +4191,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device lnc0 at isa? port 0x300 net
- irq 10 drq 0 vector lncintr</term>
+ <varlistentry><term><literal>device lnc0 at isa? port 0x300 net
+ irq 10 drq 0 vector lncintr</literal></term>
<listitem>
<para>Lance/PCnet cards (Isolan, Novell NE2100,
@@ -4200,8 +4200,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device ze0 at isa? port 0x300 net
- irq 5 iomem 0xd8000 vector zeintr</term>
+ <varlistentry><term><literal>device ze0 at isa? port 0x300 net
+ irq 5 iomem 0xd8000 vector zeintr</literal></term>
<listitem>
<para>IBM/National Semiconductor PCMCIA ethernet
@@ -4209,8 +4209,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device zp0 at isa? port 0x300 net
- irq 10 iomem 0xd8000 vector zpintr</term>
+ <varlistentry><term><literal>device zp0 at isa? port 0x300 net
+ irq 10 iomem 0xd8000 vector zpintr</literal></term>
<listitem>
<para>3Com PCMCIA Etherlink III</para>
@@ -4227,7 +4227,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device loop</term>
+ <varlistentry><term><literal>pseudo-device loop</literal></term>
<listitem>
<para><literal>loop</literal> is the generic
@@ -4237,7 +4237,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device ether</term>
+ <varlistentry><term><literal>pseudo-device ether</literal></term>
<listitem>
<para><literal>ether</literal> is only needed if
@@ -4246,8 +4246,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device sl
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device sl
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para><literal>sl</literal> is for SLIP (Serial
@@ -4264,8 +4264,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device ppp
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device ppp
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para><literal>ppp</literal> is for kernel-mode
@@ -4281,8 +4281,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device tun
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device tun
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para><literal>tun</literal> is used by the
@@ -4296,8 +4296,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device bpfilter
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device bpfilter
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para>Berkeley packet filter. This pseudo-device allows
@@ -4329,23 +4329,23 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>controller snd0</term>
+ <varlistentry><term><literal>controller snd0</literal></term>
<listitem>
<para>Generic sound driver code. Required for all of the
following sound cards except <literal>pca</literal>.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device pas0 at isa? port 0x388 irq 10 drq 6
- vector pasintr</term>
+ <varlistentry><term><literal>device pas0 at isa? port 0x388 irq 10 drq 6
+ vector pasintr</literal></term>
<listitem>
<para>ProAudioSpectrum digital audio and MIDI.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device sb0 at isa? port 0x220 irq 7
- conflicts drq 1 vector sbintr</term>
+ <varlistentry><term><literal>device sb0 at isa? port 0x220 irq 7
+ conflicts drq 1 vector sbintr</literal></term>
<listitem>
<para>SoundBlaster digital audio.</para>
@@ -4361,7 +4361,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device sbxvi0 at isa? drq 5</term>
+ <varlistentry><term><literal>device sbxvi0 at isa? drq 5</literal></term>
<listitem>
<para>SoundBlaster 16 digital 16-bit audio.</para>
@@ -4375,7 +4375,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device sbmidi0 at isa? port 0x330</term>
+ <varlistentry><term><literal>device sbmidi0 at isa? port 0x330</literal></term>
<listitem>
<para>SoundBlaster 16 MIDI interface. If you have a
@@ -4384,24 +4384,24 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device gus0 at isa? port 0x220 irq 10 drq 1
- vector gusintr</term>
+ <varlistentry><term><literal>device gus0 at isa? port 0x220 irq 10 drq 1
+ vector gusintr</literal></term>
<listitem>
<para>Gravis Ultrasound.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device mss0 at isa? port 0x530 irq 10 drq 1
- vector adintr</term>
+ <varlistentry><term><literal>device mss0 at isa? port 0x530 irq 10 drq 1
+ vector adintr</literal></term>
<listitem>
<para>Microsoft Sound System.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device opl0 at isa? port 0x388
- conflicts</term>
+ <varlistentry><term><literal>device opl0 at isa? port 0x388
+ conflicts</literal></term>
<listitem>
<para>AdLib FM-synthesis audio. Include this line for
@@ -4411,24 +4411,24 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device mpu0 at isa? port 0x330 irq 6 drq
- 0</term>
+ <varlistentry><term><literal>device mpu0 at isa? port 0x330 irq 6 drq
+ 0</literal></term>
<listitem>
<para>Roland MPU-401 stand-alone card.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device uart0 at isa? port 0x330 irq 5 vector
- "m6850intr"</term>
+ <varlistentry><term><literal>device uart0 at isa? port 0x330 irq 5 vector
+ "m6850intr"</literal></term>
<listitem>
<para>Stand-alone 6850 UART for MIDI.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device pca0 at isa? port "IO_TIMER1"
- tty<anchor id="kernelconfig-pcaudio"></term>
+ <varlistentry><term><literal>device pca0 at isa? port "IO_TIMER1"
+ tty</literal><anchor id="kernelconfig-pcaudio"></term>
<listitem>
<para>Digital audio through PC speaker. This is going to be
@@ -4461,7 +4461,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>pseudo-device gzip</term>
+ <varlistentry><term><literal>pseudo-device gzip</literal></term>
<listitem>
<para><literal>gzip</literal> allows you to run
FreeBSD programs that have been compressed with <command>gzip</command>. The programs in
@@ -4470,7 +4470,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device log</term>
+ <varlistentry><term><literal>pseudo-device log</literal></term>
<listitem>
<para><literal>log</literal> is used for logging
@@ -4478,8 +4478,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device pty
- <replaceable>number</replaceable><anchor id="kernelconfig-ptys"></term>
+ <varlistentry><term><literal>pseudo-device pty
+ <replaceable>number</replaceable></literal><anchor id="kernelconfig-ptys"></term>
<listitem>
<para><literal>pty</literal> is a
@@ -4495,8 +4495,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device snp
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device snp
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para>Snoop device. This pseudo-device allows one terminal
@@ -4509,7 +4509,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device vn</term>
+ <varlistentry><term><literal>pseudo-device vn</literal></term>
<listitem>
<para>Vnode driver. Allows a file to be treated as a device
@@ -4520,8 +4520,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device ccd
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device ccd
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para>Concatenated disks. This pseudo-device allows you to
@@ -4550,13 +4550,13 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device joy0 at isa? port "IO_GAME"</term>
+ <varlistentry><term><literal>device joy0 at isa? port "IO_GAME"</literal></term>
<listitem>
<para>PC joystick device.</para>
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device speaker</term>
+ <varlistentry><term><literal>pseudo-device speaker</literal></term>
<listitem>
<para>Supports IBM BASIC-style noises through the PC
@@ -5833,14 +5833,14 @@ FreeBSD BUILT-19950429 (GR386) #0: Sat Apr 29 17:50:09 SAT 1995</screen>
<variablelist>
- <varlistentry><term>options IPFIREWALL</term>
+ <varlistentry><term><literal>options IPFIREWALL</literal></term>
<listitem>
<para>Compiles into the kernel the code for packet
filtering.</para>
</listitem>
</varlistentry>
- <varlistentry><term>options IPFIREWALL_VERBOSE</term>
+ <varlistentry><term><literal>options IPFIREWALL_VERBOSE</literal></term>
<listitem>
<para>Enables code to allow logging of packets through
@@ -5850,7 +5850,7 @@ FreeBSD BUILT-19950429 (GR386) #0: Sat Apr 29 17:50:09 SAT 1995</screen>
</listitem>
</varlistentry>
- <varlistentry><term>options IPFIREWALL_VERBOSE_LIMIT=10</term>
+ <varlistentry><term><literal>options IPFIREWALL_VERBOSE_LIMIT=10</literal></term>
<listitem>
<para>Limits the number of packets logged through
@@ -27930,7 +27930,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Date created: 5 December 1994
# Whom: asami
#
-# $Id: book.sgml,v 1.52 1998-10-26 23:53:20 nik Exp $
+# $Id: book.sgml,v 1.53 1998-10-26 23:53:47 nik Exp $
#
DISTNAME= oneko-1.1b
diff --git a/en_US.ISO_8859-1/books/handbook/book.sgml b/en_US.ISO_8859-1/books/handbook/book.sgml
index 0f922ab68a..7c962f339c 100644
--- a/en_US.ISO_8859-1/books/handbook/book.sgml
+++ b/en_US.ISO_8859-1/books/handbook/book.sgml
@@ -3247,7 +3247,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>machine "i386"</term>
+ <varlistentry><term><literal>machine "i386"</literal></term>
<listitem>
<para>The first keyword is <literal>machine</literal>, which, since FreeBSD only
runs on Intel 386 and compatible chips, is i386.</para>
@@ -3261,7 +3261,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>cpu "<replaceable>cpu_type</replaceable>"</term>
+ <varlistentry><term><literal>cpu "<replaceable>cpu_type</replaceable>"</literal></term>
<listitem>
<para>The next keyword is <literal>cpu</literal>,
@@ -3295,7 +3295,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>ident <replaceable>machine_name</replaceable></term>
+ <varlistentry><term><literal>ident <replaceable>machine_name</replaceable></literal></term>
<listitem>
<para>Next, we have <literal>ident</literal>,
@@ -3318,7 +3318,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>maxusers <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>maxusers <replaceable>number</replaceable></literal></term>
<listitem>
<para>This file sets the size of a number of important
@@ -3362,7 +3362,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>config <replaceable>kernel_name</replaceable> root on
+ <varlistentry><term><literal>config <replaceable>kernel_name</replaceable></literal> root on
<replaceable>root_device</replaceable></term>
<listitem>
@@ -3393,7 +3393,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options MATH_EMULATE</term>
+ <varlistentry><term><literal>options MATH_EMULATE</literal></term>
<listitem>
<para>This line allows the kernel to simulate a math
co-processor if your computer does not have one (386 or
@@ -3413,7 +3413,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "COMPAT_43"</term>
+ <varlistentry><term><literal>options "COMPAT_43"</literal></term>
<listitem>
<para>Compatibility with 4.3BSD. Leave this in; some
@@ -3422,7 +3422,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options BOUNCE_BUFFERS</term>
+ <varlistentry><term><literal>options BOUNCE_BUFFERS</literal></term>
<listitem>
<para>ISA devices and EISA devices operating in an ISA
@@ -3433,7 +3433,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options UCONSOLE</term>
+ <varlistentry><term><literal>options UCONSOLE</literal></term>
<listitem>
<para>Allow users to grab the console, useful for X Windows.
@@ -3444,7 +3444,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options SYSVSHM</term>
+ <varlistentry><term><literal>options SYSVSHM</literal></term>
<listitem>
<para>This option provides for System V shared memory. The
@@ -3457,7 +3457,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options SYSVSEM</term>
+ <varlistentry><term><literal>options SYSVSEM</literal></term>
<listitem>
<para>Support for System V semaphores. Less commonly used
@@ -3465,7 +3465,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options SYSVMSG</term>
+ <varlistentry><term><literal>options SYSVMSG</literal></term>
<listitem>
<para>Support for System V messages. Again, only adds a few
@@ -3499,14 +3499,14 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options FFS</term>
+ <varlistentry><term><literal>options FFS</literal></term>
<listitem>
<para>The basic hard drive filesystem; leave it in if you
boot from the hard disk.</para>
</listitem>
</varlistentry>
- <varlistentry><term>options NFS</term>
+ <varlistentry><term><literal>options NFS</literal></term>
<listitem>
<para>Network Filesystem. Unless you plan to mount
@@ -3515,7 +3515,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options MSDOSFS</term>
+ <varlistentry><term><literal>options MSDOSFS</literal></term>
<listitem>
<para>MS-DOS Filesystem. Unless you plan to mount a DOS
@@ -3529,7 +3529,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "CD9660"</term>
+ <varlistentry><term><literal>options "CD9660"</literal></term>
<listitem>
<para>ISO 9660 filesystem for CD-ROMs. Comment it out if
@@ -3540,7 +3540,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options PROCFS</term>
+ <varlistentry><term><literal>options PROCFS</literal></term>
<listitem>
<para>Process filesystem. This is a pretend filesystem
@@ -3550,7 +3550,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options MFS</term>
+ <varlistentry><term><literal>options MFS</literal></term>
<listitem>
<para>Memory-mapped file system. This is basically a RAM
@@ -3588,7 +3588,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "EXT2FS"</term>
+ <varlistentry><term><literal>options "EXT2FS"</literal></term>
<listitem>
<para>Linux's native file system. With ext2fs support you
@@ -3598,7 +3598,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options QUOTA</term>
+ <varlistentry><term><literal>options QUOTA</literal></term>
<listitem>
<para>Enable disk quotas. If you have a public access
@@ -3625,7 +3625,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>controller isa0</term>
+ <varlistentry><term><literal>controller isa0</literal></term>
<listitem>
<para>All PC's supported by FreeBSD have one of these. If
you have an IBM PS/2 (Micro Channel Architecture), then
@@ -3633,7 +3633,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller pci0</term>
+ <varlistentry><term><literal>controller pci0</literal></term>
<listitem>
<para>Include this if you have a PCI motherboard. This
@@ -3642,7 +3642,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller fdc0</term>
+ <varlistentry><term><literal>controller fdc0</literal></term>
<listitem>
<para>Floppy drive controller: <literal>fd0</literal> is the
@@ -3660,7 +3660,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller wdc0</term>
+ <varlistentry><term><literal>controller wdc0</literal></term>
<listitem>
<para>This is the primary IDE controller. <literal>wd0</literal> and <literal>wd1</literal> are the master and slave hard
@@ -3673,7 +3673,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device wcd0<anchor id="kernelconfig-atapi"></term>
+ <varlistentry><term><literal>device wcd0<anchor id="kernelconfig-atapi"></literal></term>
<listitem>
<para>This device provides IDE CD-ROM support. Be sure to
@@ -3685,19 +3685,19 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device npx0 at isa? port "IO_NPX" irq 13
- vector npxintr</term>
+ <varlistentry><term><literal>device npx0 at isa? port "IO_NPX" irq 13
+ vector npxintr</literal></term>
<listitem>
<para><literal>npx0</literal> is the interface to
the floating point math unit in FreeBSD, either the
hardware co-processor or the software math emulator. It
- is <emphasis>NOT</emphasis> optional.</para>
+ is <emphasis>not</emphasis> optional.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device wt0 at isa? port 0x300 bio irq 5 drq
- 1 vector wtintr</term>
+ <varlistentry><term><literal>device wt0 at isa? port 0x300 bio irq 5 drq
+ 1 vector wtintr</literal></term>
<listitem>
<para>Wangtek and Archive QIC-02/QIC-36 tape drive
@@ -3720,23 +3720,23 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device mcd0 at isa? port 0x300 bio
- irq 10 vector mcdintr</term>
+ <varlistentry><term><literal>device mcd0 at isa? port 0x300 bio
+ irq 10 vector mcdintr</literal></term>
<listitem>
<para>Mitsumi CD-ROM (LU002, LU005, FX001D).</para>
</listitem>
</varlistentry>
- <varlistentry><term>device scd0 at isa? port 0x230
- bio</term>
+ <varlistentry><term><literal>device scd0 at isa? port 0x230
+ bio</literal></term>
<listitem>
<para>Sony CD-ROM (CDU31, CDU33A).</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller matcd0 at isa? port ?
- bio</term>
+ <varlistentry><term><literal>controller matcd0 at isa? port ?
+ bio</literal></term>
<listitem>
<para>Matsushita/Panasonic CD-ROM (sold by Creative
@@ -3768,46 +3768,46 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>controller bt0 at isa? port
- "IO_BT0" bio irq ? vector btintr</term>
+ <varlistentry><term><literal>controller bt0 at isa? port
+ "IO_BT0" bio irq ? vector btintr</literal></term>
<listitem>
<para>Most Buslogic controllers</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller uha0 at isa? port
- "IO_UHA0" bio irq ? drq 5 vector uhaintr</term>
+ <varlistentry><term><literal>controller uha0 at isa? port
+ "IO_UHA0" bio irq ? drq 5 vector uhaintr</literal></term>
<listitem>
<para>UltraStor 14F and 34F</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller ahc0</term>
+ <varlistentry><term><literal>controller ahc0</literal></term>
<listitem>
<para>Adaptec 274x/284x/294x</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller ahb0 at isa? bio irq ?
- vector ahbintr</term>
+ <varlistentry><term><literal>controller ahb0 at isa? bio irq ?
+ vector ahbintr</literal></term>
<listitem>
<para>Adaptec 174x</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller aha0 at isa? port
- "IO_AHA0" bio irq ? drq 5 vector ahaintr</term>
+ <varlistentry><term><literal>controller aha0 at isa? port
+ "IO_AHA0" bio irq ? drq 5 vector ahaintr</literal></term>
<listitem>
<para>Adaptec 154x</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller aic0 at isa? port
- 0x340 bio irq 11 vector aicintr</term>
+ <varlistentry><term><literal>controller aic0 at isa? port
+ 0x340 bio irq 11 vector aicintr</literal></term>
<listitem>
<para>Adaptec 152x and sound cards using Adaptec
@@ -3815,8 +3815,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller nca0 at isa? port
- 0x1f88 bio irq 10 vector ncaintr</term>
+ <varlistentry><term><literal>controller nca0 at isa? port
+ 0x1f88 bio irq 10 vector ncaintr</literal></term>
<listitem>
<para>ProAudioSpectrum cards using NCR 5380 or
@@ -3824,8 +3824,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller sea0 at isa? bio irq 5
- iomem 0xc8000 iosiz 0x2000 vector seaintr</term>
+ <varlistentry><term><literal>controller sea0 at isa? bio irq 5
+ iomem 0xc8000 iosiz 0x2000 vector seaintr</literal></term>
<listitem>
<para>Seagate ST01/02 8 bit controller
@@ -3833,15 +3833,15 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller wds0 at isa? port
- 0x350 bio irq 15 drq 6 vector wdsintr</term>
+ <varlistentry><term><literal>controller wds0 at isa? port
+ 0x350 bio irq 15 drq 6 vector wdsintr</literal></term>
<listitem>
<para>Western Digital WD7000 controller</para>
</listitem>
</varlistentry>
- <varlistentry><term>controller ncr0</term>
+ <varlistentry><term><literal>controller ncr0</literal></term>
<listitem>
<para>NCR 53C810, 53C815, 53C825, 53C860, 53C875 PCI
@@ -3853,7 +3853,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>options "SCSI_DELAY=15"</term>
+ <varlistentry><term><literal>options "SCSI_DELAY=15"</literal></term>
<listitem>
<para>This causes the kernel to pause 15 seconds before
@@ -3866,7 +3866,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>controller scbus0</term>
+ <varlistentry><term><literal>controller scbus0</literal></term>
<listitem>
<para>If you have any SCSI controllers, this line provides
@@ -3875,21 +3875,21 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device sd0</term>
+ <varlistentry><term><literal>device sd0</literal></term>
<listitem>
<para>Support for SCSI hard drives.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device st0</term>
+ <varlistentry><term><literal>device st0</literal></term>
<listitem>
<para>Support for SCSI tape drives.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device cd0</term>
+ <varlistentry><term><literal>device cd0</literal></term>
<listitem>
<para>Support for SCSI CD-ROM drives.</para>
@@ -3920,8 +3920,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device sc0 at isa? port "IO_KBD" tty irq 1
- vector scintr</term>
+ <varlistentry><term><literal>device sc0 at isa? port "IO_KBD" tty irq 1
+ vector scintr</literal></term>
<listitem>
<para><literal>sc0</literal> is the default
console driver, which resembles an SCO console. Since most
@@ -3934,8 +3934,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device vt0 at isa? port "IO_KBD" tty irq 1
- vector pcrint</term>
+ <varlistentry><term><literal>device vt0 at isa? port "IO_KBD" tty irq 1
+ vector pcrint</literal></term>
<listitem>
<para>This is a VT220-compatible console driver, backwards
@@ -3951,13 +3951,13 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options "PCVT_FREEBSD=210"</term>
+ <varlistentry><term><literal>options "PCVT_FREEBSD=210"</literal></term>
<listitem>
<para>Required with the <literal>vt0</literal> console driver.</para>
</listitem>
</varlistentry>
- <varlistentry><term>options XSERVER</term>
+ <varlistentry><term><literal>options XSERVER</literal></term>
<listitem>
<para>Only applicable with the <literal>vt0</literal> console driver. This
@@ -3971,8 +3971,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device mse0 at isa? port 0x23c tty irq 5
- vector ms</term>
+ <varlistentry><term><literal>device mse0 at isa? port 0x23c tty irq 5
+ vector ms</literal></term>
<listitem>
<para>Use this device if you have a Logitech or ATI InPort
@@ -3988,8 +3988,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device psm0 at isa? port "IO_KBD"
- conflicts tty irq 12 vector psmintr</term>
+ <varlistentry><term><literal>device psm0 at isa? port "IO_KBD"
+ conflicts tty irq 12 vector psmintr</literal></term>
<listitem>
<para>Use this device if your mouse plugs into the PS/2
@@ -4013,8 +4013,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device sio0 at isa? port "IO_COM1" tty irq
- 4 vector siointr<anchor id="kernelconfig-serial"></term>
+ <varlistentry><term><literal>device sio0 at isa? port "IO_COM1" tty irq
+ 4 vector siointr</literal><anchor id="kernelconfig-serial"></term>
<listitem>
<para><literal>sio0</literal> through <literal>sio3</literal> are the four serial ports
referred to as COM1 through COM4 in the MS-DOS world.
@@ -4038,8 +4038,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device lpt0 at isa? port? tty irq 7 vector
- lptintr</term>
+ <varlistentry><term><literal>device lpt0 at isa? port? tty irq 7 vector
+ lptintr</literal></term>
<listitem>
<para><literal>lpt0</literal> through <literal>lpt2</literal> are the three printer ports you
@@ -4063,7 +4063,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>options INET</term>
+ <varlistentry><term><literal>options INET</literal></term>
<listitem>
<para>Networking support. Leave it in even if you do not
plan to be connected to a network. Most programs require
@@ -4083,29 +4083,29 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device de0</term>
+ <varlistentry><term><literal>device de0</literal></term>
<listitem>
<para>Ethernet adapters based on Digital Equipment
DC21040, DC21041 or DC21140 chips</para>
</listitem>
</varlistentry>
- <varlistentry><term>device fxp0</term>
+ <varlistentry><term><literal>device fxp0</literal></term>
<listitem>
<para>Intel EtherExpress Pro/100B</para>
</listitem>
</varlistentry>
- <varlistentry><term>device vx0</term>
+ <varlistentry><term><literal>device vx0</literal></term>
<listitem>
<para>3Com 3C590 and 3C595 (buggy)</para>
</listitem>
</varlistentry>
- <varlistentry><term>device cx0 at isa? port 0x240 net
- irq 15 drq 7 vector cxintr</term>
+ <varlistentry><term><literal>device cx0 at isa? port 0x240 net
+ irq 15 drq 7 vector cxintr</literal></term>
<listitem>
<para>Cronyx/Sigma multiport sync/async (with Cisco
@@ -4113,8 +4113,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device ed0 at isa? port 0x280 net
- irq 5 iomem 0xd8000 vector edintr</term>
+ <varlistentry><term><literal>device ed0 at isa? port 0x280 net
+ irq 5 iomem 0xd8000 vector edintr</literal></term>
<listitem>
<para>Western Digital and SMC 80xx and 8216; Novell
@@ -4123,48 +4123,48 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device el0 at isa? port 0x300 net
- irq 9 vector elintr</term>
+ <varlistentry><term><literal>device el0 at isa? port 0x300 net
+ irq 9 vector elintr</literal></term>
<listitem>
<para>3Com 3C501 (slow!)</para>
</listitem>
</varlistentry>
- <varlistentry><term>device eg0 at isa? port 0x310 net
- irq 5 vector egintr</term>
+ <varlistentry><term><literal>device eg0 at isa? port 0x310 net
+ irq 5 vector egintr</literal></term>
<listitem>
<para>3Com 3C505</para>
</listitem>
</varlistentry>
- <varlistentry><term>device ep0 at isa? port 0x300 net
- irq 10 vector epintr</term>
+ <varlistentry><term><literal>device ep0 at isa? port 0x300 net
+ irq 10 vector epintr</literal></term>
<listitem>
<para>3Com 3C509 (buggy)</para>
</listitem>
</varlistentry>
- <varlistentry><term>device fe0 at isa? port 0x240 net
- irq ? vector feintr</term>
+ <varlistentry><term><literal>device fe0 at isa? port 0x240 net
+ irq ? vector feintr</literal></term>
<listitem>
<para>Fujitsu MB86960A/MB86965A Ethernet</para>
</listitem>
</varlistentry>
- <varlistentry><term>device fea0 at isa? net irq ? vector
- feaintr</term>
+ <varlistentry><term><literal>device fea0 at isa? net irq ? vector
+ feaintr</literal></term>
<listitem>
<para>DEC DEFEA EISA FDDI adapter</para>
</listitem>
</varlistentry>
- <varlistentry><term>device ie0 at isa? port 0x360 net
- irq 7 iomem 0xd0000 vector ieintr</term>
+ <varlistentry><term><literal>device ie0 at isa? port 0x360 net
+ irq 7 iomem 0xd0000 vector ieintr</literal></term>
<listitem>
<para>AT&amp;T StarLAN 10 and EN100; 3Com 3C507;
@@ -4172,17 +4172,17 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device ix0 at isa? port 0x300 net
+ <varlistentry><term><literal>device ix0 at isa? port 0x300 net
irq 10 iomem 0xd0000 iosiz 32768 vector
- ixintr</term>
+ ixintr</literal></term>
<listitem>
<para>Intel EtherExpress 16</para>
</listitem>
</varlistentry>
- <varlistentry><term>device le0 at isa? port 0x300 net
- irq 5 iomem 0xd0000 vector le_intr</term>
+ <varlistentry><term><literal>device le0 at isa? port 0x300 net
+ irq 5 iomem 0xd0000 vector le_intr</literal></term>
<listitem>
<para>Digital Equipment EtherWorks 2 and EtherWorks
@@ -4191,8 +4191,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device lnc0 at isa? port 0x300 net
- irq 10 drq 0 vector lncintr</term>
+ <varlistentry><term><literal>device lnc0 at isa? port 0x300 net
+ irq 10 drq 0 vector lncintr</literal></term>
<listitem>
<para>Lance/PCnet cards (Isolan, Novell NE2100,
@@ -4200,8 +4200,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device ze0 at isa? port 0x300 net
- irq 5 iomem 0xd8000 vector zeintr</term>
+ <varlistentry><term><literal>device ze0 at isa? port 0x300 net
+ irq 5 iomem 0xd8000 vector zeintr</literal></term>
<listitem>
<para>IBM/National Semiconductor PCMCIA ethernet
@@ -4209,8 +4209,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device zp0 at isa? port 0x300 net
- irq 10 iomem 0xd8000 vector zpintr</term>
+ <varlistentry><term><literal>device zp0 at isa? port 0x300 net
+ irq 10 iomem 0xd8000 vector zpintr</literal></term>
<listitem>
<para>3Com PCMCIA Etherlink III</para>
@@ -4227,7 +4227,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device loop</term>
+ <varlistentry><term><literal>pseudo-device loop</literal></term>
<listitem>
<para><literal>loop</literal> is the generic
@@ -4237,7 +4237,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device ether</term>
+ <varlistentry><term><literal>pseudo-device ether</literal></term>
<listitem>
<para><literal>ether</literal> is only needed if
@@ -4246,8 +4246,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device sl
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device sl
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para><literal>sl</literal> is for SLIP (Serial
@@ -4264,8 +4264,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device ppp
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device ppp
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para><literal>ppp</literal> is for kernel-mode
@@ -4281,8 +4281,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device tun
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device tun
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para><literal>tun</literal> is used by the
@@ -4296,8 +4296,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device bpfilter
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device bpfilter
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para>Berkeley packet filter. This pseudo-device allows
@@ -4329,23 +4329,23 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>controller snd0</term>
+ <varlistentry><term><literal>controller snd0</literal></term>
<listitem>
<para>Generic sound driver code. Required for all of the
following sound cards except <literal>pca</literal>.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device pas0 at isa? port 0x388 irq 10 drq 6
- vector pasintr</term>
+ <varlistentry><term><literal>device pas0 at isa? port 0x388 irq 10 drq 6
+ vector pasintr</literal></term>
<listitem>
<para>ProAudioSpectrum digital audio and MIDI.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device sb0 at isa? port 0x220 irq 7
- conflicts drq 1 vector sbintr</term>
+ <varlistentry><term><literal>device sb0 at isa? port 0x220 irq 7
+ conflicts drq 1 vector sbintr</literal></term>
<listitem>
<para>SoundBlaster digital audio.</para>
@@ -4361,7 +4361,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device sbxvi0 at isa? drq 5</term>
+ <varlistentry><term><literal>device sbxvi0 at isa? drq 5</literal></term>
<listitem>
<para>SoundBlaster 16 digital 16-bit audio.</para>
@@ -4375,7 +4375,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device sbmidi0 at isa? port 0x330</term>
+ <varlistentry><term><literal>device sbmidi0 at isa? port 0x330</literal></term>
<listitem>
<para>SoundBlaster 16 MIDI interface. If you have a
@@ -4384,24 +4384,24 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device gus0 at isa? port 0x220 irq 10 drq 1
- vector gusintr</term>
+ <varlistentry><term><literal>device gus0 at isa? port 0x220 irq 10 drq 1
+ vector gusintr</literal></term>
<listitem>
<para>Gravis Ultrasound.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device mss0 at isa? port 0x530 irq 10 drq 1
- vector adintr</term>
+ <varlistentry><term><literal>device mss0 at isa? port 0x530 irq 10 drq 1
+ vector adintr</literal></term>
<listitem>
<para>Microsoft Sound System.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device opl0 at isa? port 0x388
- conflicts</term>
+ <varlistentry><term><literal>device opl0 at isa? port 0x388
+ conflicts</literal></term>
<listitem>
<para>AdLib FM-synthesis audio. Include this line for
@@ -4411,24 +4411,24 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>device mpu0 at isa? port 0x330 irq 6 drq
- 0</term>
+ <varlistentry><term><literal>device mpu0 at isa? port 0x330 irq 6 drq
+ 0</literal></term>
<listitem>
<para>Roland MPU-401 stand-alone card.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device uart0 at isa? port 0x330 irq 5 vector
- "m6850intr"</term>
+ <varlistentry><term><literal>device uart0 at isa? port 0x330 irq 5 vector
+ "m6850intr"</literal></term>
<listitem>
<para>Stand-alone 6850 UART for MIDI.</para>
</listitem>
</varlistentry>
- <varlistentry><term>device pca0 at isa? port "IO_TIMER1"
- tty<anchor id="kernelconfig-pcaudio"></term>
+ <varlistentry><term><literal>device pca0 at isa? port "IO_TIMER1"
+ tty</literal><anchor id="kernelconfig-pcaudio"></term>
<listitem>
<para>Digital audio through PC speaker. This is going to be
@@ -4461,7 +4461,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>pseudo-device gzip</term>
+ <varlistentry><term><literal>pseudo-device gzip</literal></term>
<listitem>
<para><literal>gzip</literal> allows you to run
FreeBSD programs that have been compressed with <command>gzip</command>. The programs in
@@ -4470,7 +4470,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device log</term>
+ <varlistentry><term><literal>pseudo-device log</literal></term>
<listitem>
<para><literal>log</literal> is used for logging
@@ -4478,8 +4478,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device pty
- <replaceable>number</replaceable><anchor id="kernelconfig-ptys"></term>
+ <varlistentry><term><literal>pseudo-device pty
+ <replaceable>number</replaceable></literal><anchor id="kernelconfig-ptys"></term>
<listitem>
<para><literal>pty</literal> is a
@@ -4495,8 +4495,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device snp
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device snp
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para>Snoop device. This pseudo-device allows one terminal
@@ -4509,7 +4509,7 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device vn</term>
+ <varlistentry><term><literal>pseudo-device vn</literal></term>
<listitem>
<para>Vnode driver. Allows a file to be treated as a device
@@ -4520,8 +4520,8 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device ccd
- <replaceable>number</replaceable></term>
+ <varlistentry><term><literal>pseudo-device ccd
+ <replaceable>number</replaceable></literal></term>
<listitem>
<para>Concatenated disks. This pseudo-device allows you to
@@ -4550,13 +4550,13 @@ grizzle-6.5 - the combined piano tutorial, LOGO interpreter and shoot 'em up arc
<variablelist>
- <varlistentry><term>device joy0 at isa? port "IO_GAME"</term>
+ <varlistentry><term><literal>device joy0 at isa? port "IO_GAME"</literal></term>
<listitem>
<para>PC joystick device.</para>
</listitem>
</varlistentry>
- <varlistentry><term>pseudo-device speaker</term>
+ <varlistentry><term><literal>pseudo-device speaker</literal></term>
<listitem>
<para>Supports IBM BASIC-style noises through the PC
@@ -5833,14 +5833,14 @@ FreeBSD BUILT-19950429 (GR386) #0: Sat Apr 29 17:50:09 SAT 1995</screen>
<variablelist>
- <varlistentry><term>options IPFIREWALL</term>
+ <varlistentry><term><literal>options IPFIREWALL</literal></term>
<listitem>
<para>Compiles into the kernel the code for packet
filtering.</para>
</listitem>
</varlistentry>
- <varlistentry><term>options IPFIREWALL_VERBOSE</term>
+ <varlistentry><term><literal>options IPFIREWALL_VERBOSE</literal></term>
<listitem>
<para>Enables code to allow logging of packets through
@@ -5850,7 +5850,7 @@ FreeBSD BUILT-19950429 (GR386) #0: Sat Apr 29 17:50:09 SAT 1995</screen>
</listitem>
</varlistentry>
- <varlistentry><term>options IPFIREWALL_VERBOSE_LIMIT=10</term>
+ <varlistentry><term><literal>options IPFIREWALL_VERBOSE_LIMIT=10</literal></term>
<listitem>
<para>Limits the number of packets logged through
@@ -27930,7 +27930,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Date created: 5 December 1994
# Whom: asami
#
-# $Id: book.sgml,v 1.52 1998-10-26 23:53:20 nik Exp $
+# $Id: book.sgml,v 1.53 1998-10-26 23:53:47 nik Exp $
#
DISTNAME= oneko-1.1b