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?