wd719x.rst 956 B

123456789101112131415161718192021222324
  1. .. SPDX-License-Identifier: GPL-2.0
  2. ===============================================================
  3. Driver for Western Digital WD7193, WD7197 and WD7296 SCSI cards
  4. ===============================================================
  5. The card requires firmware that can be cut out of the Windows NT driver that
  6. can be downloaded from WD at:
  7. http://support.wdc.com/product/download.asp?groupid=801&sid=27&lang=en
  8. There is no license anywhere in the file or on the page - so the firmware
  9. probably cannot be added to linux-firmware.
  10. This script downloads and extracts the firmware, creating wd719x-risc.bin and
  11. d719x-wcs.bin files. Put them in /lib/firmware/::
  12. #!/bin/sh
  13. wget http://support.wdc.com/download/archive/pciscsi.exe
  14. lha xi pciscsi.exe pci-scsi.exe
  15. lha xi pci-scsi.exe nt/wd7296a.sys
  16. rm pci-scsi.exe
  17. dd if=wd7296a.sys of=wd719x-risc.bin bs=1 skip=5760 count=14336
  18. dd if=wd7296a.sys of=wd719x-wcs.bin bs=1 skip=20096 count=514
  19. rm wd7296a.sys