Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

scsi: docs: convert wd719x.txt to ReST

Link: https://lore.kernel.org/r/23e5b13d810b7dd8126b126173999c02eac50e74.1583136624.git.mchehab+huawei@kernel.org
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

authored by

Mauro Carvalho Chehab and committed by
Martin K. Petersen
40ee6309 b64f6822

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