diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-13 04:52:34 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-13 04:52:34 +0000 |
commit | 249e5581181a54affeb5776f4564761000bec325 (patch) | |
tree | 8423485be8a44c64dcd30fe312448078c8338954 /sys/arch/alpha/conf | |
parent | d9d69ebdfabbb8c7b347c000afee38410e0f292e (diff) |
Add support for PCI NE2000 clones. I finally got around to doing this :-)
Tested on alpha, should work on i386 as well. Note that we treat
a PCI NE2000 as a 16-bit card for now since the driver can not
deal with > 16 bit cards. To fix this isa16bit in ed_softc needs to
be changed to bus_width (in bytes). I plan to do this as part
of the split ed driver.
Diffstat (limited to 'sys/arch/alpha/conf')
-rw-r--r-- | sys/arch/alpha/conf/files.alpha | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/alpha/conf/files.alpha b/sys/arch/alpha/conf/files.alpha index 5a13c589bb4..1cf6b09ffc8 100644 --- a/sys/arch/alpha/conf/files.alpha +++ b/sys/arch/alpha/conf/files.alpha @@ -1,4 +1,4 @@ -# $OpenBSD: files.alpha,v 1.10 1997/03/25 08:00:43 niklas Exp $ +# $OpenBSD: files.alpha,v 1.11 1997/04/13 04:52:33 millert Exp $ # $NetBSD: files.alpha,v 1.32 1996/11/25 04:03:21 cgd Exp $ # # alpha-specific configuration info @@ -169,7 +169,8 @@ file arch/alpha/isa/vga_isa.c vga_isa needs-flag device ed: ether, ifnet attach ed at isa with ed_isa attach ed at pcmcia with ed_pcmcia -file dev/isa/if_ed.c ed & (ed_isa | ed_pcmcia) needs-flag +attach ed at pci with ed_pci +file dev/isa/if_ed.c ed & (ed_isa | ed_pcmcia | ed_pci) needs-flag # # EISA Bus support |