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