Add myricom and qlogic firmwares for Debian initrd.
This commit is contained in:
parent
d169ded426
commit
8dac781897
|
@ -30,4 +30,6 @@ The script will provide Debian's netboot installers with **additionnals firmware
|
|||
* Download additionnals firmwares :
|
||||
* bnx2 : For Broadcom NetXtremeII network adapters.
|
||||
* linux-nonfree : For Tigon network adapters.
|
||||
* myricom : For Myricom Myri-10G Ethernet adapters (IBM server).
|
||||
* qlogic : For QLogic Infiniband, SCSI, Fibre Channel/FCoE adapters.
|
||||
* Extract initrd and firmwares packages to build a new initrd.
|
||||
|
|
|
@ -29,6 +29,14 @@ for DISTRO in jessie stretch sid; do # For ALL Debian's version
|
|||
wget http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-linux-nonfree_0.43_all.deb
|
||||
dpkg-deb -x firmware-linux-nonfree_0.43_all.deb "${TEMP_DIR}"/mkinitrd
|
||||
|
||||
# Download myricom for IBM
|
||||
wget http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-myricom_0.43_all.deb
|
||||
dpkg-deb -x firmware-myricom_0.43_all.deb "${TEMP_DIR}"/mkinitrd
|
||||
|
||||
# Download qlogic
|
||||
wget http://ftp.fr.debian.org/debian/pool/non-free/f/firmware-nonfree/firmware-qlogic_0.43_all.deb
|
||||
dpkg-deb -x firmware-qlogic_0.43_all.deb "${TEMP_DIR}"/mkinitrd
|
||||
|
||||
# Make a new initrd
|
||||
mv initrd.gz initrd_orig.gz
|
||||
pushd "${TEMP_DIR}"/mkinitrd/
|
||||
|
|
Loading…
Reference in New Issue