Welcome to our website
To take full advantage of all features you need to login or register. Registration is completely free and takes only a few seconds.
Summary
Product:
USB 2.0 Netlink Cable
Vendor:
LogiLink
Tested operating systems:
Linux other, Mandriva Linux
Most recent version of this submission:
USB 2.0 Netlink Cable
Average Rating:


Submit a new result for this product
Operating System: Mandriva Linux Rating:

Submitted on 2007-05-30 21:12:16
Operating System: Linux other Rating:





Submitted on 2007-06-18 10:50:25
Anonymous
Post License:
GNU LGPL
Post License:
GNU LGPL
Go in your kernel directory. Open: ./drivers/usb/net/plusb.c and search for 067.
You should see:
static const struct usb_device_id products [] = {
{
USB_DEVICE(0x067b, 0x0000), // PL-2301
.driver_info = (unsigned long) &prolific_info,
}, {
USB_DEVICE(0x067b, 0x0001), // PL-2302
.driver_info = (unsigned long) &prolific_info,
},
{ }, // END
};
Make it read:
static const struct usb_device_id products [] = {
{
USB_DEVICE(0x067b, 0x0000), // PL-2301
.driver_info = (unsigned long) &prolific_info,
}, {
USB_DEVICE(0x067b, 0x0001), // PL-2302
.driver_info = (unsigned long) &prolific_info,
}, {
USB_DEVICE(0x067b, 0x2501), // PL-2501
.driver_info = (unsigned long) &prolific_info,
},
{ }, // END
};
Save the file and do: make modules && make modules_install
Cheers!
You should see:
static const struct usb_device_id products [] = {
{
USB_DEVICE(0x067b, 0x0000), // PL-2301
.driver_info = (unsigned long) &prolific_info,
}, {
USB_DEVICE(0x067b, 0x0001), // PL-2302
.driver_info = (unsigned long) &prolific_info,
},
{ }, // END
};
Make it read:
static const struct usb_device_id products [] = {
{
USB_DEVICE(0x067b, 0x0000), // PL-2301
.driver_info = (unsigned long) &prolific_info,
}, {
USB_DEVICE(0x067b, 0x0001), // PL-2302
.driver_info = (unsigned long) &prolific_info,
}, {
USB_DEVICE(0x067b, 0x2501), // PL-2501
.driver_info = (unsigned long) &prolific_info,
},
{ }, // END
};
Save the file and do: make modules && make modules_install
Cheers!
Operating System: Mandriva Linux Rating:

Submitted on 2008-12-25 11:46:13
Anonymous
Post License:
GNU LGPL
Post License:
GNU LGPL
Still no support in Mandriva 2009, and the workaround mentioned above does not help.

Post License:
GNU LGPL
[1] http://www.mail-archive.com/linux-usb-devel@lists.sourceforge.net/msg42707.html