Port-amiga archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: PCMCIA Ethernet



On Wed, Feb 07, 2001 at 10:37:02PM +0100, Stefan Blomen wrote:
> Hi,
> 
> I installed NetBSD 1.5 and try to use a PCMCIA Ethernet card called "Synergy
> 21 S21810+". This card works fine under AmigaDOS with cnet.device.
> With NetBSD I use kernel netbsd.INSTWDCPCM, and it says at bootime:
> 
> ...
> pccard0 at mainbus0
> pcmcia0 at pccard0
> Unknown kind of PCMCIA memory (amiga/dev/pccard.c)

Oops. Thats an Amiga PCMCIA controler driver specific error... can you
build your own kernel? then patch your sys/arch/amiga/dev/pcmcia_gayle.c
with this diff:

Index: gayle_pcmcia.c
===================================================================
RCS file: /cvsroot/syssrc/sys/arch/amiga/dev/gayle_pcmcia.c,v
retrieving revision 1.2
diff -u -r1.2 gayle_pcmcia.c
--- gayle_pcmcia.c      2000/02/21 18:27:50     1.2
+++ gayle_pcmcia.c      2001/02/08 21:15:14
@@ -350,7 +350,7 @@
                break;
        default:
                /* This means that this code needs an update/a bugfix */
-               printf("Unknown kind of PCMCIA memory (amiga/dev/pccard.c)\n");
+               printf(__FILE__ ": unknown kind %d of PCMCIA memory\n", kind);
                return 1;
        }
 

build your otherwise INSTWDCPCM kernel, and try again.

Regards,
        Ignatios



Home | Main Index | Thread Index | Old Index