diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-20 17:57:08 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-20 17:57:08 +0000 |
commit | 905c336a6b47f82abf10b9727181e16a35e8d6a4 (patch) | |
tree | 21f01c7fc3f3ab564b92cab9afccc592e098da16 /sys/arch/amiga/conf/files.amiga | |
parent | 998e67add27c5d47a9db2f6f8021ba2231220156 (diff) |
Yep, our pcmcia framework works on amigas too :-)
I also added aic and ep, although they are untested.
Diffstat (limited to 'sys/arch/amiga/conf/files.amiga')
-rw-r--r-- | sys/arch/amiga/conf/files.amiga | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/sys/arch/amiga/conf/files.amiga b/sys/arch/amiga/conf/files.amiga index 98e28cd25d3..6378e4f3928 100644 --- a/sys/arch/amiga/conf/files.amiga +++ b/sys/arch/amiga/conf/files.amiga @@ -1,4 +1,4 @@ -# $OpenBSD: files.amiga,v 1.30 1999/01/19 10:09:26 niklas Exp $ +# $OpenBSD: files.amiga,v 1.31 1999/01/20 17:57:07 niklas Exp $ # $NetBSD: files.amiga,v 1.62 1997/08/27 19:32:47 is Exp $ @@ -327,7 +327,6 @@ file arch/amiga/isa/cross.c cross needs-flag # XXX Dummy busses needed for some multi-homed devices specified in files.isa define pci { } -define pcmcia {} include "../../../dev/isa/files.isa" file arch/amiga/isa/isa_machdep.c isabus @@ -378,3 +377,27 @@ major {rd = 16} # SunOS Binary Compatibility (COMPAT_SUNOS) include "../../../compat/sunos/files.sunos" file arch/m68k/m68k/sunos_machdep.c compat_sunos + +# PCIC pcmcia contoller +# XXX this needs to be done very late, so it's done here. This feels +# like a kludge, but it might be for the best. + +device pcic {[controller = -1], [socket = -1]} +file dev/ic/i82365.c pcic + +# PCIC pcmcia controller on ISA bus. +attach pcic at isa with pcic_isa +file dev/isa/i82365_isa.c pcic_isa + +# PCIC pcmcia controller on PnP board +#attach pcic at isapnp with pcic_isapnp +#file dev/isa/i82365_isapnp.c pcic_isapnp + +# Code common to ISA and ISAPnP attachments +file dev/isa/i82365_isasubr.c pcic_isa | pcic_isapnp + +# this wants to be probed as late as possible. +# +# Machine-independent PCMCIA drivers +# +include "dev/pcmcia/files.pcmcia" |