blob: 4ab6dc1d8e0fcb64f69d3d52c7cc395c447f62a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# $OpenBSD: files.eisa,v 1.11 2013/10/28 12:33:32 mpi Exp $
# $NetBSD: files.eisa,v 1.12 1996/09/01 00:10:55 mycroft Exp $
#
# Config.new file and device description for machine-independent EISA code.
# Included by ports that need it. Requires that the SCSI files be
# defined first.
device eisa {[slot = -1]}
attach eisa at eisabus
file dev/eisa/eisa.c eisa needs-flag
# Adaptec AHA-174x EISA SCSI Host Adapter family
device ahb: scsi
attach ahb at eisa
file dev/eisa/aha1742.c ahb
# Adaptec AHA-274X and aic7770 motherboard SCSI controllers
# device declaration in sys/conf/files
attach ahc at eisa with ahc_eisa
file dev/eisa/ahc_eisa.c ahc_eisa
# BusLogic BT-7xx EISA family
# device declaration in sys/conf/files
attach bha at eisa with bha_eisa
file dev/eisa/bha_eisa.c bha_eisa
# DPT EATA SCSI controllers
# device declaration in sys/conf/files
attach dpt at eisa with dpt_eisa
file dev/eisa/dpt_eisa.c dpt_eisa
# UltraStor UHA-24f boards
# device declaration in sys/conf/files
attach uha at eisa with uha_eisa
file dev/eisa/uha_eisa.c uha_eisa
# Compaq Array Controllers
attach cac at eisa with cac_eisa
file dev/eisa/cac_eisa.c cac_eisa
# 3Com 3c579 and 3c509 masquerading as EISA Ethernet Controllers
# device declaration in sys/conf/files
attach ep at eisa with ep_eisa
file dev/eisa/if_ep_eisa.c ep_eisa
|