summaryrefslogtreecommitdiffstats
path: root/filter-modules.sh.rhel
diff options
context:
space:
mode:
authorJustin M. Forbes <jforbes@fedoraproject.org>2022-10-05 15:51:23 -0500
committerJustin M. Forbes <jforbes@fedoraproject.org>2022-10-05 15:51:23 -0500
commit479417d6e6efacde8be8ade8667722325fe200e5 (patch)
treea87812da9d6a58327763a6aceb4196423ac86b2e /filter-modules.sh.rhel
parent44ff646f83169d792167d1deec0e11a431fc8041 (diff)
downloadkernel-479417d6e6efacde8be8ade8667722325fe200e5.tar.gz
kernel-479417d6e6efacde8be8ade8667722325fe200e5.tar.xz
kernel-479417d6e6efacde8be8ade8667722325fe200e5.zip
kernel-6.0.0-300
* Wed Oct 05 2022 Justin M. Forbes <jforbes@fedoraproject.org> [6.0.0-0] - enable efifb for Nvidia (Justin M. Forbes) - drivers/firmware: skip simpledrm if nvidia-drm.modeset=1 is set (Javier Martinez Canillas) - Updates for stable Fedora (Justin M. Forbes) - Forgot too remove this from pending, it is set properly in ark (Justin M. Forbes) - redhat/Makefile: Add DIST to git tags for RHEL (Prarit Bhargava) Resolves: Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
Diffstat (limited to 'filter-modules.sh.rhel')
-rwxr-xr-xfilter-modules.sh.rhel8
1 files changed, 8 insertions, 0 deletions
diff --git a/filter-modules.sh.rhel b/filter-modules.sh.rhel
index cc976bb9a..81c9e14a0 100755
--- a/filter-modules.sh.rhel
+++ b/filter-modules.sh.rhel
@@ -25,6 +25,8 @@ netdrvs="appletalk can dsa hamradio ieee802154 irda ppp slip usb wireless"
ethdrvs="3com adaptec alteon amd aquantia atheros broadcom cadence calxeda chelsio cisco dec dlink emulex icplus marvell neterion nvidia oki-semi packetengines qlogic rdc renesas sfc silan sis smsc stmicro sun tehuti ti wiznet xircom"
+cryptdrvs="bcm caam cavium chelsio hisilicon marvell qat"
+
inputdrvs="gameport tablet touchscreen"
scsidrvs="aacraid aic7xxx aic94xx be2iscsi bfa bnx2i bnx2fc csiostor cxgbi esas2r fcoe fnic hisi_sas isci libsas lpfc megaraid mpt2sas mpt3sas mvsas pm8001 qla2xxx qla4xxx sym53c8xx_2 ufs qedf"
@@ -100,6 +102,12 @@ do
filter_dir $1 drivers/net/ethernet/${eth}
done
+# Filter the crypto drivers
+for crypt in ${cryptdrvs}
+do
+ filter_dir $1 drivers/crypto/${crypt}
+done
+
# SCSI
for scsi in ${scsidrvs}
do