Tom Svensson writes:
 > Hi, 
 > 
 > Is there any support for the 3c19250-device (Ethernet USB-adapter)? If; what
 > kernel-version?
 > 
 > Best regards, 
 > Tom S.
 > 
 > ---------------------------------------------------------------------
 > To unsubscribe, e-mail: [EMAIL PROTECTED]
 > For additional commands, e-mail: [EMAIL PROTECTED]
 > 

Tom,

Nothing in the kernel packages yet.  There is a separate "kaweth" USB
ethernet driver that can be patched to recognize the 3Com device.

Driver at:

   http:///drivers.rd.ilan.net/kaweth/

>From an earlier linux-usb message, the patch is to insert a 3Com ID
line in a data structure in kaweth.c:

/****************************************************************
 *     usb_dev_id
 ****************************************************************/
static struct usb_eth_dev usb_dev_id[] = {
        { "NetGear EA-101", 0x0846, 0x1001, NULL },
        { "3Com 3C19250", 0x0506, 0x03e8, NULL },  /* SP */
        { NULL, 0, 0, NULL }
};


The kaweth driver builds as a separate module.  I manually load it
with insmod after plugging in the device.  After the insmod you have
an eth0 (or eth1 or eth2 ...) device.

I'm using kernel 2.3.99pre9-1 but this driver should work with earlier
2.3 series kernels.

-- SP


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to