From 69c15c9bbe7e000e7a848169244fee5395422ab2 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 6 Oct 2021 14:43:21 -0700 Subject: [PATCH] runtime-install: exclude liquidio and netronome firmwares As Peter Robinson explains here: https://bugzilla.redhat.com/show_bug.cgi?id=2011615#c3 these are not useful, as the devices they're for do not support netinst-style deployment. Signed-off-by: Adam Williamson --- share/templates.d/99-generic/runtime-install.tmpl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/share/templates.d/99-generic/runtime-install.tmpl b/share/templates.d/99-generic/runtime-install.tmpl index 4aabe292d..fddac051e 100644 --- a/share/templates.d/99-generic/runtime-install.tmpl +++ b/share/templates.d/99-generic/runtime-install.tmpl @@ -17,12 +17,16 @@ installpkg grubby %if basearch != "s390x": ## skip the firmware for sound, video, and scanners, none of which will ## do much good for the installer. Also skip uhd-firmware which is not - ## even a kernel firmware package. + ## even a kernel firmware package. liquidio and netronome firmwares are + ## for enterprise switch devices, netinst deployment does not work on + ## these so there is no point shipping them - see + ## https://bugzilla.redhat.com/show_bug.cgi?id=2011615 installpkg --optional *-firmware --except alsa* --except midisport-firmware \ --except crystalhd-firmware --except ivtv-firmware \ --except cx18-firmware --except iscan-firmware \ --except uhd-firmware --except lulzbot-marlin-firmware \ - --except gnome-firmware --except sigrok-firmware + --except gnome-firmware --except sigrok-firmware \ + --except liquidio-firmware --except netronome-firmware installpkg b43-openfwwf %endif