|
|
发表于 2005-4-24 20:25:31
|
显示全部楼层
刚才看了一下内核,是支持这种芯片的:
Tekram DC395(U/UW/F) and DC315(U) SCSI support (EXPERIMENTAL)
CONFIG_SCSI_DC395x: │
│ │
│ This driver supports PCI SCSI host adapters based on the ASIC │
│ TRM-S1040 chip, e.g Tekram DC395(U/UW/F) and DC315(U) variants. │
│ │
│ This driver works, but is still in experimental status. So better │
│ have a bootable disk and a backup in case of emergency. │
│ │
│ Documentation can be found in <file ocumentation/scsi/dc395x.txt>. │
│ │
│ To compile this driver as a module, choose M here: the │
│ module will be called dc395x. │
│ │
│ Symbol: SCSI_DC395x [=m] │
│ Prompt: Tekram DC395(U/UW/F) and DC315(U) SCSI support (EXPERIMENTAL) │
│ Defined at drivers/scsi/Kconfig:1410 │
│ Depends on: PCI && SCSI && EXPERIMENTAL │
│ Location: │
│ -> Device Drivers │
│ -> SCSI device support │
│ -> SCSI device support (SCSI [=m]) │
│ -> SCSI low-level drivers
这样的话,只须在/etc/modules.conf中加入这一行:
alias scsi_hostadapter dc395x
然后运行:
insmod dc395x
应该就可以了
注:修改/etc/modules.conf是以前较为常用的方法,注意到在LE2005中这个文件变成了/etc/modprobe.conf。
同样加入这行:
alias scsi_hostadapter dc395x
然后运行:modprobe dc395x
之后再运行:lsmod|gerp dc395x,如果有结果就说明加载成功了。 |
|