0001 .. SPDX-License-Identifier: GPL-2.0
0002
0003 ===============================================================
0004 Driver for Western Digital WD7193, WD7197 and WD7296 SCSI cards
0005 ===============================================================
0006
0007 The card requires firmware that can be cut out of the Windows NT driver that
0008 can be downloaded from WD at:
0009 http://support.wdc.com/product/download.asp?groupid=801&sid=27&lang=en
0010
0011 There is no license anywhere in the file or on the page - so the firmware
0012 probably cannot be added to linux-firmware.
0013
0014 This script downloads and extracts the firmware, creating wd719x-risc.bin and
0015 d719x-wcs.bin files. Put them in /lib/firmware/::
0016
0017 #!/bin/sh
0018 wget http://support.wdc.com/download/archive/pciscsi.exe
0019 lha xi pciscsi.exe pci-scsi.exe
0020 lha xi pci-scsi.exe nt/wd7296a.sys
0021 rm pci-scsi.exe
0022 dd if=wd7296a.sys of=wd719x-risc.bin bs=1 skip=5760 count=14336
0023 dd if=wd7296a.sys of=wd719x-wcs.bin bs=1 skip=20096 count=514
0024 rm wd7296a.sys