Commit 40ee6309 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab Committed by Martin K. Petersen
parent b64f6822
...@@ -45,5 +45,6 @@ Linux SCSI Subsystem ...@@ -45,5 +45,6 @@ Linux SCSI Subsystem
sym53c8xx_2 sym53c8xx_2
tcm_qla2xxx tcm_qla2xxx
ufs ufs
wd719x
scsi_transport_srp/figures scsi_transport_srp/figures
.. SPDX-License-Identifier: GPL-2.0
===============================================================
Driver for Western Digital WD7193, WD7197 and WD7296 SCSI cards Driver for Western Digital WD7193, WD7197 and WD7296 SCSI cards
--------------------------------------------------------------- ===============================================================
The card requires firmware that can be cut out of the Windows NT driver that The card requires firmware that can be cut out of the Windows NT driver that
can be downloaded from WD at: can be downloaded from WD at:
...@@ -9,13 +12,13 @@ There is no license anywhere in the file or on the page - so the firmware ...@@ -9,13 +12,13 @@ There is no license anywhere in the file or on the page - so the firmware
probably cannot be added to linux-firmware. probably cannot be added to linux-firmware.
This script downloads and extracts the firmware, creating wd719x-risc.bin and This script downloads and extracts the firmware, creating wd719x-risc.bin and
d719x-wcs.bin files. Put them in /lib/firmware/. d719x-wcs.bin files. Put them in /lib/firmware/::
#!/bin/sh #!/bin/sh
wget http://support.wdc.com/download/archive/pciscsi.exe wget http://support.wdc.com/download/archive/pciscsi.exe
lha xi pciscsi.exe pci-scsi.exe lha xi pciscsi.exe pci-scsi.exe
lha xi pci-scsi.exe nt/wd7296a.sys lha xi pci-scsi.exe nt/wd7296a.sys
rm pci-scsi.exe rm pci-scsi.exe
dd if=wd7296a.sys of=wd719x-risc.bin bs=1 skip=5760 count=14336 dd if=wd7296a.sys of=wd719x-risc.bin bs=1 skip=5760 count=14336
dd if=wd7296a.sys of=wd719x-wcs.bin bs=1 skip=20096 count=514 dd if=wd7296a.sys of=wd719x-wcs.bin bs=1 skip=20096 count=514
rm wd7296a.sys rm wd7296a.sys
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment