Revision 7b6fb3050d8f5e2b6858eef344e47ac1f5442827 authored by Benjamin Poirier on 31 January 2024, 14:08:44 UTC, committed by Jakub Kicinski on 01 February 2024, 16:36:20 UTC
Similar to commit dd2d40acdbb2 ("selftests: bonding: Add more missing
config options"), add more networking-specific config options which are
needed for team device tests.

For testing, I used the minimal config generated by virtme-ng and I added
the options in the config file. Afterwards, the team device test passed.

Fixes: bbb774d921e2 ("net: Add tests for bonding and team address list management")
Reviewed-by: Petr Machata <petrm@nvidia.com>
Signed-off-by: Benjamin Poirier <bpoirier@nvidia.com>
Link: https://lore.kernel.org/r/20240131140848.360618-2-bpoirier@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent e0526ec
Raw File
wd719x.rst
.. 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
back to top