forked from rpm/suse-module-tools
Accepting request 391132 from Base:System
1 OBS-URL: https://build.opensuse.org/request/show/391132 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/suse-module-tools?expand=0&rev=19
This commit is contained in:
commit
718d848692
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:304a3d04717c996491fca55dcf320a4f19ada765d1a53e83419a404d74d6c60c
|
oid sha256:48418d3f702ae6a2971347990ae7e831aa7555cda6bd5c0620a94486fb202d3a
|
||||||
size 3000
|
size 3173
|
||||||
|
@ -1,9 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 1 11:43:32 UTC 2016 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- Skip KMPs built from the kernel spec file directly (fate#319339)
|
||||||
|
- Bump version number to 12.4
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 23 10:43:39 UTC 2016 - lnussel@suse.de
|
Tue Feb 23 10:43:39 UTC 2016 - lnussel@suse.de
|
||||||
|
|
||||||
- add missing requirements on module-init-tools, findutils and gzip,
|
- add missing requirements on module-init-tools, findutils and gzip,
|
||||||
mkinitrd (bnc#965830)
|
mkinitrd (bnc#965830)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 15 23:04:41 UTC 2016 - bpoirier@suse.com
|
||||||
|
|
||||||
|
- Add module option ib_mthca.catas_reset_disable=1 on ppc64le (bsc#456389).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 13 08:35:32 UTC 2015 - mmarek@suse.cz
|
Tue Oct 13 08:35:32 UTC 2015 - mmarek@suse.cz
|
||||||
|
|
||||||
@ -11,7 +22,7 @@ Tue Oct 13 08:35:32 UTC 2015 - mmarek@suse.cz
|
|||||||
with a modified template (bsc#949862).
|
with a modified template (bsc#949862).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 8 12:44:33 UTC 2015 - trenn@suse.de
|
Tue Sep 8 12:52:15 UTC 2015 - trenn@suse.de
|
||||||
|
|
||||||
- Use /run instead of deprecated /var/run
|
- Use /run instead of deprecated /var/run
|
||||||
This can have sever consequences if this package uses /var/run. It may
|
This can have sever consequences if this package uses /var/run. It may
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: suse-module-tools
|
Name: suse-module-tools
|
||||||
Version: 12.3
|
Version: 12.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Requires: /sbin/depmod
|
Requires: /sbin/depmod
|
||||||
Requires: /sbin/mkinitrd
|
Requires: /sbin/mkinitrd
|
||||||
|
@ -248,6 +248,11 @@ find_kmps() {
|
|||||||
local kmp
|
local kmp
|
||||||
|
|
||||||
for kmp in $(rpm -qa --qf '%{n}-%{v}-%{r}\n' --nodigest --nosignature "$basename-kmp-$flavor"); do
|
for kmp in $(rpm -qa --qf '%{n}-%{v}-%{r}\n' --nodigest --nosignature "$basename-kmp-$flavor"); do
|
||||||
|
if rpm -q --qf '[%{providename}\n]' --nodigest --nosignature "$kmp" | \
|
||||||
|
grep -q '^kmp_in_kernel$'; then
|
||||||
|
# KMP built directly from the kernel spec file (fate#319339)
|
||||||
|
continue
|
||||||
|
fi
|
||||||
rpm -ql --nodigest --nosignature "$kmp" \
|
rpm -ql --nodigest --nosignature "$kmp" \
|
||||||
| grep -Ee '^/lib/modules/[^/]+/.+\.ko$' \
|
| grep -Ee '^/lib/modules/[^/]+/.+\.ko$' \
|
||||||
> $tmpdir/modules-$kmp
|
> $tmpdir/modules-$kmp
|
||||||
|
Loading…
Reference in New Issue
Block a user