Add atabus.
This commit is contained in:
parent
d29ea7aa72
commit
2e73ec1205
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: GENERIC,v 1.64 2003/08/06 12:32:06 bouyer Exp $
|
||||
# $NetBSD: GENERIC,v 1.65 2003/10/08 11:06:24 bouyer Exp $
|
||||
#
|
||||
# GENERIC machine description file
|
||||
#
|
||||
|
@ -22,7 +22,7 @@ include "arch/bebox/conf/std.bebox"
|
|||
|
||||
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
|
||||
|
||||
#ident "GENERIC-$Revision: 1.64 $"
|
||||
#ident "GENERIC-$Revision: 1.65 $"
|
||||
|
||||
maxusers 32
|
||||
|
||||
|
@ -184,7 +184,8 @@ fd0 at fdc? drive 1
|
|||
#fd* at fdc? drive ?
|
||||
|
||||
wdc0 at isa? port 0x1f0 irq 14 # ST506, ESDI, and IDE controllers
|
||||
wd* at wdc? drive ?
|
||||
atabus* at wdc? channel ? # ATA bus
|
||||
wd* at atabus? drive ?
|
||||
|
||||
ne0 at isa? port 0x300 irq 5 # NE[12]000 ethernet cards
|
||||
#ipkdbif0 at ne?
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: INSTALL,v 1.24 2003/09/06 03:25:25 itojun Exp $
|
||||
# $NetBSD: INSTALL,v 1.25 2003/10/08 11:06:24 bouyer Exp $
|
||||
#
|
||||
# First try for BEBOX config file
|
||||
#
|
||||
|
@ -130,7 +130,8 @@ fd0 at fdc? drive 1
|
|||
#fd* at fdc? drive ?
|
||||
|
||||
wdc0 at isa? port 0x1f0 irq 14 # ST506, ESDI, and IDE controllers
|
||||
wd* at wdc? drive ?
|
||||
atabus* at wdc? channel ? # ATA bus
|
||||
wd* at atabus? drive ?
|
||||
|
||||
ne0 at isa? port 0x300 irq 5 # NE[12]000 ethernet cards
|
||||
#ipkdbif0 at ne?
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: GENERIC,v 1.52 2003/10/04 15:43:05 chris Exp $
|
||||
# $NetBSD: GENERIC,v 1.53 2003/10/08 11:06:42 bouyer Exp $
|
||||
#
|
||||
# GENERIC machine description file
|
||||
#
|
||||
|
@ -252,6 +252,9 @@ cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
|
|||
# a machine hang with some controllers.
|
||||
pciide* at pci? dev ? function ? flags 0x0000
|
||||
|
||||
# ATA bus support
|
||||
atabus* at pciide? channel ?
|
||||
|
||||
# IDE drives
|
||||
# Flags are used only with controllers that support DMA operations
|
||||
# and mode settings (e.g. some pciide controllers)
|
||||
|
@ -263,10 +266,10 @@ pciide* at pci? dev ? function ? flags 0x0000
|
|||
# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
|
||||
# (0xc=1100, 0xa=1010, 0xf=1111)
|
||||
# 0x0000 means "use whatever the drive claims to support".
|
||||
wd* at pciide? channel ? drive ? flags 0x0000 # the drives themselves
|
||||
wd* at atabus? drive ? flags 0x0000 # the drives themselves
|
||||
|
||||
# ATAPI bus support
|
||||
atapibus* at pciide? channel ?
|
||||
atapibus* at atabus?
|
||||
|
||||
# ATAPI devices
|
||||
cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: INSTALL,v 1.29 2003/09/13 13:30:04 chris Exp $
|
||||
# $NetBSD: INSTALL,v 1.30 2003/10/08 11:06:42 bouyer Exp $
|
||||
#
|
||||
# CATSINST -- CHALTECH CATS Install kernel
|
||||
#
|
||||
|
@ -216,6 +216,9 @@ cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
|
|||
# a machine hang with some controllers.
|
||||
pciide* at pci? dev ? function ? flags 0x0000
|
||||
|
||||
# ATA bus support
|
||||
atabus* at pciide? channel ?
|
||||
|
||||
# IDE drives
|
||||
# Flags are used only with controllers that support DMA operations
|
||||
# and mode settings (e.g. some pciide controllers)
|
||||
|
@ -227,10 +230,10 @@ pciide* at pci? dev ? function ? flags 0x0000
|
|||
# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
|
||||
# (0xc=1100, 0xa=1010, 0xf=1111)
|
||||
# 0x0000 means "use whatever the drive claims to support".
|
||||
wd* at pciide? channel ? drive ? flags 0x0000 # the drives themselves
|
||||
wd* at atabus? drive ? flags 0x0000 # the drives themselves
|
||||
|
||||
# ATAPI bus support
|
||||
atapibus* at pciide? channel ?
|
||||
atapibus* at atabus?
|
||||
|
||||
# ATAPI devices
|
||||
cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
|
||||
|
|
Loading…
Reference in New Issue