Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

7
  • 1
    If part of the problem is loading the right module, see Webcam on Angström Commented Dec 5, 2011 at 23:23
  • 1
    Do you need at all the usb-storage module? because if not you can put it in a blacklist and it wouldn't load at all. Commented Dec 6, 2011 at 11:57
  • @Gilles, I am successfully able to load the LKM. My question is how do I manually and automatically attach that to the device? Commented Dec 6, 2011 at 15:47
  • @Hanan, currently I have no use for the usb-storage module. I may end up needing to blacklist it to automatically attach the correct module, but first I need to know how to attach the usbnet one. Commented Dec 6, 2011 at 15:49
  • 1
    @njozwiak Module usbnet will not automatically load, because it have no information about hardware, which can use it. Try to find proper driver and use, for example, modinfo kalmia. In the alias lines you will see vendor id xxxx and product id yyyy as usb:vxxxxpyyyy. Or you can edit file /lib/modules/kernel_version/modules.usbmap and for your HW you can delete line, where is for you HW module usb-storage or change usbstorage with proper net driver. But after depmod -a this change will go away... Commented Jan 12, 2012 at 7:44