forked from rpm/suse-module-tools
Accepting request 1120836 from home:mwilck:suse-module-tools
- Update to version 16.0.38: * modprobe.d: use softdep to load sd_mod and sg (boo#1216070) OBS-URL: https://build.opensuse.org/request/show/1120836 OBS-URL: https://build.opensuse.org/package/show/Base:System/suse-module-tools?expand=0&rev=173
This commit is contained in:
parent
bb56aeeb81
commit
419a9bcdda
@ -1,4 +1,4 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">https://github.com/openSUSE/suse-module-tools.git</param>
|
<param name="url">https://github.com/openSUSE/suse-module-tools.git</param>
|
||||||
<param name="changesrevision">9b3340f3d7bd08f5112811f78bbd00834e5758bf</param></service></servicedata>
|
<param name="changesrevision">a061b1b2a3e52cdbc54d3e24bd3bdacf5b589aba</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0611d4f37876cba7a79755d92683a1e8ece19cd1fa66f31c19463b0812526095
|
|
||||||
size 126987
|
|
3
suse-module-tools-16.0.38.obscpio
Normal file
3
suse-module-tools-16.0.38.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b9c3bd4efe50e45d5dcdb2ba98d56acdd09a767414d4e5788f5881d8bce1b691
|
||||||
|
size 126987
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 27 15:48:07 UTC 2023 - Martin Wilck <mwilck@suse.com>
|
||||||
|
|
||||||
|
- Update to version 16.0.38:
|
||||||
|
* modprobe.d: use softdep to load sd_mod and sg (boo#1216070)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 25 19:48:57 UTC 2023 - Martin Wilck <mwilck@suse.com>
|
Wed Oct 25 19:48:57 UTC 2023 - Martin Wilck <mwilck@suse.com>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: suse-module-tools
|
name: suse-module-tools
|
||||||
version: 16.0.37
|
version: 16.0.38
|
||||||
mtime: 1698263242
|
mtime: 1698421623
|
||||||
commit: 9b3340f3d7bd08f5112811f78bbd00834e5758bf
|
commit: a061b1b2a3e52cdbc54d3e24bd3bdacf5b589aba
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
%global modprobe_conf_rpmsave %(echo "%{modprobe_conf_files}" | sed 's,\\([^ ]*\\),%{_sysconfdir}/modprobe.d/\\1.conf.rpmsave,g')
|
%global modprobe_conf_rpmsave %(echo "%{modprobe_conf_files}" | sed 's,\\([^ ]*\\),%{_sysconfdir}/modprobe.d/\\1.conf.rpmsave,g')
|
||||||
|
|
||||||
Name: suse-module-tools
|
Name: suse-module-tools
|
||||||
Version: 16.0.37
|
Version: 16.0.38
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Configuration for module loading and SUSE-specific utilities for KMPs
|
Summary: Configuration for module loading and SUSE-specific utilities for KMPs
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@ -142,7 +142,10 @@ echo 'Wants=boot-sysctl.service' >>"%{buildroot}%{sysctl_dropin}"
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
install -d -m 755 "%{buildroot}%{_modulesloaddir}"
|
install -d -m 755 "%{buildroot}%{_modulesloaddir}"
|
||||||
install -pm 644 -t "%{buildroot}%{_modulesloaddir}" modules-load.d/*.conf
|
for _x in modules-load.d/*.conf; do
|
||||||
|
[ -e "$_x" ] || continue
|
||||||
|
install -pm 644 -t "%{buildroot}%{_modulesloaddir}" "$_x"
|
||||||
|
done
|
||||||
|
|
||||||
%ifarch ppc64 ppc64le
|
%ifarch ppc64 ppc64le
|
||||||
install -d -m 755 %{buildroot}/usr/lib/systemd/system-generators
|
install -d -m 755 %{buildroot}/usr/lib/systemd/system-generators
|
||||||
|
Loading…
Reference in New Issue
Block a user