Jim Babb's port of the AIC6360 code.
Submitted by: babb Obtained from: NetBSD
This commit is contained in:
parent
ab1698b3e9
commit
31208007c7
sys
@ -4,7 +4,7 @@
|
||||
#
|
||||
# This kernel is NOT MEANT to be runnable!
|
||||
#
|
||||
# $Id: LINT,v 1.83 1994/09/23 06:22:46 davidg Exp $
|
||||
# $Id: LINT,v 1.84 1994/09/25 02:10:47 ache Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -128,6 +128,8 @@ controller isa0
|
||||
controller aha0 at isa? port "IO_AHA0" bio irq 11 drq 5 vector ahaintr
|
||||
# driver for the Adaptec 174x SCSI cards.
|
||||
controller ahb0 at isa? bio irq 11 vector ahbintr
|
||||
# Driver for Soundblaster (and PAS?) SCSI controller.
|
||||
controller aic0 at isa? port 0x340 bio irq 11 vector aicintr
|
||||
# driver for the Bustek 742.
|
||||
controller bt0 at isa? port "IO_BT0" bio irq 12 vector btintr
|
||||
|
||||
|
@ -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.47 1994/09/11 21:09:52 ats Exp $
|
||||
# $Id: files.i386,v 1.48 1994/09/21 01:30:15 jkh Exp $
|
||||
#
|
||||
i386/i386/autoconf.c standard device-driver
|
||||
i386/i386/conf.c standard
|
||||
@ -42,6 +42,7 @@ i386/ibcs2/imgact_coff.c optional ibcs2
|
||||
#i386/ibcs2/imgact_elf.c optional svr4
|
||||
i386/isa/aha1542.c optional aha device-driver
|
||||
i386/isa/aha1742.c optional ahb device-driver
|
||||
i386/isa/aic6360.c optional aic device-driver
|
||||
i386/isa/b004.c optional bqu device-driver
|
||||
i386/isa/bt742a.c optional bt device-driver
|
||||
i386/isa/clock.c standard
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# GENERICAH -- Generic machine with WD/AHx/NCR family disks
|
||||
#
|
||||
# $Id: GENERICAH,v 1.43 1994/09/18 21:18:49 se Exp $
|
||||
# $Id: GENERICAH,v 1.44 1994/09/22 19:37:25 wollman Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -62,6 +62,7 @@ device st1
|
||||
device cd0 #Only need one of these, the code dynamically grows
|
||||
|
||||
device wt0 at isa? port 0x300 bio irq 5 drq 1 vector wtintr
|
||||
controller aic0 at isa? port 0x340 bio irq 11 vector aicintr
|
||||
device mcd0 at isa? port 0x300 bio irq 10 vector mcdintr
|
||||
device mcd1 at isa? port 0x340 bio irq 11 vector mcdintr
|
||||
device pas0 at isa? port 0x1f88 bio
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
# This kernel is NOT MEANT to be runnable!
|
||||
#
|
||||
# $Id: LINT,v 1.83 1994/09/23 06:22:46 davidg Exp $
|
||||
# $Id: LINT,v 1.84 1994/09/25 02:10:47 ache Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -128,6 +128,8 @@ controller isa0
|
||||
controller aha0 at isa? port "IO_AHA0" bio irq 11 drq 5 vector ahaintr
|
||||
# driver for the Adaptec 174x SCSI cards.
|
||||
controller ahb0 at isa? bio irq 11 vector ahbintr
|
||||
# Driver for Soundblaster (and PAS?) SCSI controller.
|
||||
controller aic0 at isa? port 0x340 bio irq 11 vector aicintr
|
||||
# driver for the Bustek 742.
|
||||
controller bt0 at isa? port "IO_BT0" bio irq 12 vector btintr
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
# This kernel is NOT MEANT to be runnable!
|
||||
#
|
||||
# $Id: LINT,v 1.83 1994/09/23 06:22:46 davidg Exp $
|
||||
# $Id: LINT,v 1.84 1994/09/25 02:10:47 ache Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -128,6 +128,8 @@ controller isa0
|
||||
controller aha0 at isa? port "IO_AHA0" bio irq 11 drq 5 vector ahaintr
|
||||
# driver for the Adaptec 174x SCSI cards.
|
||||
controller ahb0 at isa? bio irq 11 vector ahbintr
|
||||
# Driver for Soundblaster (and PAS?) SCSI controller.
|
||||
controller aic0 at isa? port 0x340 bio irq 11 vector aicintr
|
||||
# driver for the Bustek 742.
|
||||
controller bt0 at isa? port "IO_BT0" bio irq 12 vector btintr
|
||||
|
||||
|
@ -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.47 1994/09/11 21:09:52 ats Exp $
|
||||
# $Id: files.i386,v 1.48 1994/09/21 01:30:15 jkh Exp $
|
||||
#
|
||||
i386/i386/autoconf.c standard device-driver
|
||||
i386/i386/conf.c standard
|
||||
@ -42,6 +42,7 @@ i386/ibcs2/imgact_coff.c optional ibcs2
|
||||
#i386/ibcs2/imgact_elf.c optional svr4
|
||||
i386/isa/aha1542.c optional aha device-driver
|
||||
i386/isa/aha1742.c optional ahb device-driver
|
||||
i386/isa/aic6360.c optional aic device-driver
|
||||
i386/isa/b004.c optional bqu device-driver
|
||||
i386/isa/bt742a.c optional bt device-driver
|
||||
i386/isa/clock.c standard
|
||||
|
Loading…
x
Reference in New Issue
Block a user