Add support for Olof Johansson's WD7000 driver.

Submitted by:	Olof Johansson <offe@ludd.luth.se>
Obtained from:
This commit is contained in:
Jordan K. Hubbard 1995-01-23 00:25:03 +00:00
parent 93eb556775
commit 3691d2b97c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5787
5 changed files with 13 additions and 5 deletions

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.124 1995/01/12 15:37:16 jkh Exp $
# $Id: LINT,v 1.125 1995/01/14 02:39:22 jkh Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -378,6 +378,7 @@ device npx0 at isa? port "IO_NPX" irq 13 vector npxintr
# pas: ProAudioSpectrum cards using the NCR 5380 (slow!)
# uha: UltraStore 14F and 34F
# sea: Seagate ST01/02 8 bit controller (slow!)
# wds: Western Digital WD7000 controller (no scatter/gather!).
#
# Note that the order is important in order for Buslogic cards to be
# probed correctly.
@ -396,6 +397,7 @@ controller pas2 at isa? port 0x1f8c
controller pas3 at isa? port 0x1e88
controller sea0 at isa? bio irq 5 iomem 0xdc000 iosiz 0x2000 vector seaintr
controller wds0 at isa? port 0x350 bio irq 15 drq 6 vector wdsintr
#
# ST-506, ESDI, and IDE hard disks: `wdc' and `wd'

View File

@ -1,7 +1,7 @@
# This file tells config what files go into building a kernel,
# files marked standard are always included.
#
# $Id: files.i386,v 1.71 1995/01/13 02:23:03 gibbs Exp $
# $Id: files.i386,v 1.72 1995/01/13 02:29:14 gibbs Exp $
#
i386/apm/apm.c optional apm device-driver
i386/apm/apm_setup.s optional apm
@ -134,6 +134,7 @@ i386/isa/spkr.c optional speaker
i386/isa/tw.c optional tw device-driver
i386/isa/ultra14f.c optional uha device-driver
i386/isa/wd.c optional wd device-driver
i386/isa/wd7000.c optional wds device-driver
i386/isa/wt.c optional wt device-driver
i386/isa/pcvt/pcvt_drv.c optional vt device-driver
i386/isa/pcvt/pcvt_sup.c optional vt device-driver

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.124 1995/01/12 15:37:16 jkh Exp $
# $Id: LINT,v 1.125 1995/01/14 02:39:22 jkh Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -378,6 +378,7 @@ device npx0 at isa? port "IO_NPX" irq 13 vector npxintr
# pas: ProAudioSpectrum cards using the NCR 5380 (slow!)
# uha: UltraStore 14F and 34F
# sea: Seagate ST01/02 8 bit controller (slow!)
# wds: Western Digital WD7000 controller (no scatter/gather!).
#
# Note that the order is important in order for Buslogic cards to be
# probed correctly.
@ -396,6 +397,7 @@ controller pas2 at isa? port 0x1f8c
controller pas3 at isa? port 0x1e88
controller sea0 at isa? bio irq 5 iomem 0xdc000 iosiz 0x2000 vector seaintr
controller wds0 at isa? port 0x350 bio irq 15 drq 6 vector wdsintr
#
# ST-506, ESDI, and IDE hard disks: `wdc' and `wd'

View File

@ -2,7 +2,7 @@
# LINT -- config file for checking all the sources, tries to pull in
# as much of the source tree as it can.
#
# $Id: LINT,v 1.124 1995/01/12 15:37:16 jkh Exp $
# $Id: LINT,v 1.125 1995/01/14 02:39:22 jkh Exp $
#
# NB: You probably don't want to try running a kernel built from this
# file. Instead, you should start from GENERIC, and add options from
@ -378,6 +378,7 @@ device npx0 at isa? port "IO_NPX" irq 13 vector npxintr
# pas: ProAudioSpectrum cards using the NCR 5380 (slow!)
# uha: UltraStore 14F and 34F
# sea: Seagate ST01/02 8 bit controller (slow!)
# wds: Western Digital WD7000 controller (no scatter/gather!).
#
# Note that the order is important in order for Buslogic cards to be
# probed correctly.
@ -396,6 +397,7 @@ controller pas2 at isa? port 0x1f8c
controller pas3 at isa? port 0x1e88
controller sea0 at isa? bio irq 5 iomem 0xdc000 iosiz 0x2000 vector seaintr
controller wds0 at isa? port 0x350 bio irq 15 drq 6 vector wdsintr
#
# ST-506, ESDI, and IDE hard disks: `wdc' and `wd'

View File

@ -1,7 +1,7 @@
# This file tells config what files go into building a kernel,
# files marked standard are always included.
#
# $Id: files.i386,v 1.71 1995/01/13 02:23:03 gibbs Exp $
# $Id: files.i386,v 1.72 1995/01/13 02:29:14 gibbs Exp $
#
i386/apm/apm.c optional apm device-driver
i386/apm/apm_setup.s optional apm
@ -134,6 +134,7 @@ i386/isa/spkr.c optional speaker
i386/isa/tw.c optional tw device-driver
i386/isa/ultra14f.c optional uha device-driver
i386/isa/wd.c optional wd device-driver
i386/isa/wd7000.c optional wds device-driver
i386/isa/wt.c optional wt device-driver
i386/isa/pcvt/pcvt_drv.c optional vt device-driver
i386/isa/pcvt/pcvt_sup.c optional vt device-driver