Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have special hardware that is a USB mass storage device, but reports itself as a VENDOR interface class (0xFF). In order to get this device to work in linux (2.6.32) I modified the drivers/usb/storage/unusual_devs.h file and rebuilt the usb-storage.ko module. Here's the code i used:

/* ************ - INTERNAL ONLY */
UNUSUAL_DEV( 0x****, 0x****, 0x0100, 0x0100,
"*****",
"************",
USB_SC_SCSI, USB_PR_BULK, NULL, 0 ),

after building the new usb-storage.ko running modinfo on the file verified an "alias" record for the new device, after using "insmod" to add the module, the device was recognized as mass storage.

I recently updated to a 3.2.0 kernel, however, using this techniques no-longer works. I added the code to the unusual_devs.h file and rebuilt the modules. However, installing it does not allow the device to be recognized as mass storage. Further, running modinfo show ZERO "alias" entries for the usb-storage.ko file (both my newly compile and the original version that came with Ubuntu)

I'm guessing that something changed with the 3.x kernel and the usb-storage driver since I can mount regular mass storage devices, but not my specialized one, and all the "alias" entries are gone. I checked modules.alias and there's no reference to usb-storage there either.

Is there some additional step I need to perform, or is there a simpler way to do what I need?

share|improve this question
You could diff the usb-storage modules and in particular grep for occurrences of whatever is defined in the unusual_devs file. But I expect there is a way to do what you want with load-time parameters to an unmodified module, which might be more portable. – Chris Stratton Jun 4 '12 at 18:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.