Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
25 lines
956 B
ReStructuredText
25 lines
956 B
ReStructuredText
.. SPDX-License-Identifier: GPL-2.0
|
|
|
|
===============================================================
|
|
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
|
|
can be downloaded from WD at:
|
|
http://support.wdc.com/product/download.asp?groupid=801&sid=27&lang=en
|
|
|
|
There is no license anywhere in the file or on the page - so the firmware
|
|
probably cannot be added to linux-firmware.
|
|
|
|
This script downloads and extracts the firmware, creating wd719x-risc.bin and
|
|
d719x-wcs.bin files. Put them in /lib/firmware/::
|
|
|
|
#!/bin/sh
|
|
wget http://support.wdc.com/download/archive/pciscsi.exe
|
|
lha xi pciscsi.exe pci-scsi.exe
|
|
lha xi pci-scsi.exe nt/wd7296a.sys
|
|
rm pci-scsi.exe
|
|
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
|
|
rm wd7296a.sys
|