Update example kernel config to use 4.x device syntax instead of 3.x
controller/disk syntax. PR: docs/29500 Submitted by: Gary W. Swearingen <swear@aa.net>
This commit is contained in:
parent
576243248d
commit
b31de93beb
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=10538
1 changed files with 7 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
|||
<!--
|
||||
The FreeBSD Documentation Project
|
||||
|
||||
$FreeBSD: doc/en_US.ISO8859-1/books/handbook/backups/chapter.sgml,v 1.41 2001/08/11 20:35:41 jim Exp $
|
||||
$FreeBSD: doc/en_US.ISO8859-1/books/handbook/backups/chapter.sgml,v 1.42 2001/08/16 18:35:00 chern Exp $
|
||||
-->
|
||||
|
||||
<chapter id="backups">
|
||||
|
@ -582,15 +582,15 @@ options USERCONFIG #Allow user configuration with -c XXX
|
|||
|
||||
config kernel root on da0 swap on da0 and da1 dumps on da0
|
||||
|
||||
controller isa0
|
||||
controller pci0
|
||||
device isa0
|
||||
device pci0
|
||||
|
||||
controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
|
||||
disk fd0 at fdc0 drive 0
|
||||
device fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
|
||||
device fd0 at fdc0 drive 0
|
||||
|
||||
controller ncr0
|
||||
device ncr0
|
||||
|
||||
controller scbus0
|
||||
device scbus0
|
||||
|
||||
device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr
|
||||
device npx0 at isa? port "IO_NPX" irq 13 vector npxintr
|
||||
|
|
Loading…
Reference in a new issue