|
在/usr/src/linux-2.4.18-14/drivers/usb/storage/unusual_devs.h 中找到下面的句子: ================================================= UNUSUAL_DEV( 0x0644, 0x0000, 0x0100, 0x0100, "TEAC", "Floppy Drive", =================================================
在上面语句的前面加上下面的语句:
=============================================================== UNUSUAL_DEV( 0x05e3, 0x0702, 0x0000, 0x9999, "Genesys Logic, Inc.", "USB2IDE", US_SC_SCSI, US_PR_BULK, NULL, US_FL_FIX_INQUIRY | US_FL_MODE_XLATE | US_FL_START_STOP), =============================================================== 然后重新编译内核模块: cp /boot/config-2.4.18-14 /usr/src/linux-2.4/.config make oldconfig make dep make modules
然后拷贝编译好的模块到系统: cp /usr/src/linux-2.4/drivers/usb/storage/usb-storage.o /lib/modules/2.4.18-14/kernel/drivers/usb/storage/
modprobe -r usb-storage modprobe usb-storage 插上USB盘就能用了
|