|
把.unusual_devs.h中的下列句子改了一下:
UNUSUAL_DEV( 0x05e3, 0x0702, 0x0000, 0xffff,
"EagleTec",
"External Hard Disk",
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-26 /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
就能用了 |
|