My NE2000 compatible card is configured at port 0x220 by default. It's an SMC somethingorother. Port 0x220 wasn't included in the list of I/O addresses to probe at boot time in the 2.4.10 and 2.4.11 kernels, so it only found the nework card after I did the following patch. -- Tim Freeman tim@fungible.com; formerly tim@infoscreen.com --- linux-before/drivers/net/ne.c Tue Jul 17 18:53:55 2001 +++ linux/drivers/net/ne.c Sat Sep 29 11:42:08 2001 @@ -71,7 +71,7 @@ /* A zero-terminated list of I/O addresses to be probed at boot. */ #ifndef MODULE static unsigned int netcard_portlist[] __initdata = { - 0x300, 0x280, 0x320, 0x340, 0x360, 0x380, 0 + 0x300, 0x280, 0x320, 0x340, 0x360, 0x380, 0x220, 0 }; #endif - : send the line "unsubscribe linux-net" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html