Detect compressed kernel modules

- Resolves: #2008544
This commit is contained in:
Peter Georg 2021-09-28 16:11:18 +02:00 committed by Florian Festi
parent ab82f58ead
commit 179101e553
3 changed files with 7 additions and 3 deletions

View File

@ -30,7 +30,7 @@ done
is_kmod=1 is_kmod=1
for f in $filelist; do for f in $filelist; do
if [ $(echo "$f" | sed -r -ne 's:^.*/lib/modules/(.*)/(.*).ko$:\2:p') ] if [ $(echo "$f" | sed -r -ne 's:^.*/lib/modules/(.*)/(.*)\.ko(\.gz|\.bz2|\.xz)?$:\2:p') ]
then then
is_kernel=1; is_kernel=1;
fi fi

View File

@ -22,7 +22,7 @@ filelist=`sed "s/[]['\"*?{}]/\\\\\&/g"`
unset is_kmod unset is_kmod
for f in $filelist; do for f in $filelist; do
if [ $(echo "$f" | sed -r -ne 's:^.*/lib/modules/(.*)/(.*).ko$:\2:p') ] if [ $(echo "$f" | sed -r -ne 's:^.*/lib/modules/(.*)/(.*)\.ko(\.gz|\.bz2|\.xz)?$:\2:p') ]
then then
is_kmod=1; is_kmod=1;
elif [ $(echo "$f" | sed -r -ne 's:^.*/boot/(.*):\1:p') ] elif [ $(echo "$f" | sed -r -ne 's:^.*/boot/(.*):\1:p') ]

View File

@ -6,7 +6,7 @@
Summary: Red Hat specific rpm configuration files Summary: Red Hat specific rpm configuration files
Name: redhat-rpm-config Name: redhat-rpm-config
Version: 194 Version: 195
Release: 1%{?dist} Release: 1%{?dist}
# No version specified. # No version specified.
License: GPL+ License: GPL+
@ -213,6 +213,10 @@ install -p -m 644 -t %{buildroot}%{_rpmluadir}/fedora/srpm forge.lua
%doc buildflags.md %doc buildflags.md
%changelog %changelog
* Wed Jun 15 2022 Florian Festi <ffesti@redhat.com> - 195-1
- Detect compressed kernel modules
- Resolves: rhbz#2008544
* Thu Feb 17 2022 Nick Clifton <nickc@redhat.com> - 194-1 * Thu Feb 17 2022 Nick Clifton <nickc@redhat.com> - 194-1
- Use the correct package names for the triggers. - Use the correct package names for the triggers.
- Resolves: rhbz#2030671 - Resolves: rhbz#2030671