Eberhard Wildermuth (wildermuth@network-defense-systems.com) writes (2001.08.27): ----- Yes, [the PCI adaptor does work with Linux] on some mainboards. You have to specify PCIC_OPTS="irq_mode=0", then it works (as long as there are no I/O or IRQ conflicts. For some mainboards the PCIC_OPTS is not enough. For them you have to patch i82365 in the pcmcia-package. I got the patch from Leopold Toetsch (www.toetsch.at, lt@toetsch.at), who wrote it. It is a tiny three liner. Please post it somewhere so that it doesn't get lost. Best wishes Eberhard After recompilation everything works. --- begin patch --- i82365.c Mon Mar 13 22:56:02 2000 +++ /home/lt/src/pcmcia-cs-3.1.13/modules/i82365.c Thu Mar 30 15:24:52 2000 @@ -1,3 +1,5 @@ +#define PCMCIA_DEBUG 0 + /*====================================================================== Device driver for Intel 82365 and compatible PC Card controllers, @@ -33,6 +35,7 @@ ======================================================================*/ #include +#undef CONFIG_ISA #include #ifdef __LINUX__ @@ -1658,6 +1661,7 @@ pci_readb(s, PCI_HEADER_TYPE, &a); pci_readb(s, PCI_CLASS_REVISION, &r); max = (a & 0x80) ? 8 : 1; + max = 1; /* lt */ for (ns = 0; ns < max; ns++, s++, devfn++) { s->bus = bus; s->devfn = devfn; if (pci_readw(s, PCI_DEVICE_ID, &d) || (d != d0)) ----end patch