[nvidia-modprobe] Update to 550.40.07 beta
by Leigh Scott
commit efe6c95b6d24fc03ba32887606bcf74234952ba6
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Wed Jan 24 18:36:28 2024 +0000
Update to 550.40.07 beta
.gitignore | 1 +
nvidia-modprobe.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 65dc268..8fa4257 100644
--- a/.gitignore
+++ b/.gitignore
@@ -56,3 +56,4 @@ nvidia-modprobe-*.tar.gz
/nvidia-modprobe-545.23.06.tar.bz2
/nvidia-modprobe-545.29.02.tar.bz2
/nvidia-modprobe-545.29.06.tar.bz2
+/nvidia-modprobe-550.40.07.tar.bz2
diff --git a/nvidia-modprobe.spec b/nvidia-modprobe.spec
index 81031b8..6cad01a 100644
--- a/nvidia-modprobe.spec
+++ b/nvidia-modprobe.spec
@@ -1,6 +1,6 @@
Name: nvidia-modprobe
Epoch: 3
-Version: 545.29.06
+Version: 550.40.07
Release: 1%{?dist}
Summary: Load the NVIDIA kernel module and create NVIDIA character device files
@@ -43,6 +43,9 @@ chmod -x %{buildroot}%{_mandir}/man1/nvidia-modprobe.1.*
%changelog
+* Wed Jan 24 2024 Leigh Scott <leigh123linux(a)gmail.com> - 3:550.40.07-1
+- Update to 550.40.07 beta
+
* Wed Nov 22 2023 Leigh Scott <leigh123linux(a)gmail.com> - 3:545.29.06-1
- Update to 545.29.06 release
diff --git a/sources b/sources
index 4c1e9f9..21c0acc 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (nvidia-modprobe-545.29.06.tar.bz2) = ad0eae9fed0e8ec75bdae29dff01c4d90b595650991cc7cffbf1069c4ed257665d50f38374ba3f365d18f69c902fbcf69ee526053d3ac37a1156f5531a64ff66
+SHA512 (nvidia-modprobe-550.40.07.tar.bz2) = d984220a2e65da4f5e27c743960a91e56ee9135aad0924b3265a107c4e67cfb3a2c723fb24676db86aace129c30aef21747ffe2499db168428131d46652f06ac
10 months
[nvidia-kmod] Update to 550.40.07 beta
by Leigh Scott
commit 756854a62eabbc930eb1efb1a73dbebbf3cec457
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Wed Jan 24 17:17:19 2024 +0000
Update to 550.40.07 beta
make_modeset_default.patch | 19 +++++--
nvidia-drm-hotplug-workqueue.patch | 104 -------------------------------------
nvidia-kmod.spec | 10 ++--
3 files changed, 19 insertions(+), 114 deletions(-)
---
diff --git a/make_modeset_default.patch b/make_modeset_default.patch
index 56219f9..4f601ed 100644
--- a/make_modeset_default.patch
+++ b/make_modeset_default.patch
@@ -1,23 +1,32 @@
--- a/kernel/nvidia-drm/nvidia-drm-linux.c
+++ b/kernel/nvidia-drm/nvidia-drm-linux.c
-@@ -47,15 +47,15 @@
+@@ -31,13 +31,13 @@
MODULE_PARM_DESC(
modeset,
- "Enable atomic kernel modesetting (1 = enable, 0 = disable (default))");
--bool nv_drm_modeset_module_param = false;
+ "Enable atomic kernel modesetting (1 = enable (default), 0 = disable)");
-+bool nv_drm_modeset_module_param = true;
module_param_named(modeset, nv_drm_modeset_module_param, bool, 0400);
#if defined(NV_DRM_FBDEV_GENERIC_AVAILABLE)
MODULE_PARM_DESC(
fbdev,
- "Create a framebuffer device (1 = enable, 0 = disable (default)) (EXPERIMENTAL)");
--bool nv_drm_fbdev_module_param = false;
+ "Create a framebuffer device (1 = enable (default), 0 = disable) (EXPERIMENTAL)");
-+bool nv_drm_fbdev_module_param = true;
module_param_named(fbdev, nv_drm_fbdev_module_param, bool, 0400);
#endif
+--- a/kernel/nvidia-drm/nvidia-drm-os-interface.c
++++ b/kernel/nvidia-drm/nvidia-drm-os-interface.c
+@@ -41,8 +41,8 @@
+ #include <drm/drmP.h>
+ #endif
+
+-bool nv_drm_modeset_module_param = false;
+-bool nv_drm_fbdev_module_param = false;
++bool nv_drm_modeset_module_param = true;
++bool nv_drm_fbdev_module_param = true;
+
+ void *nv_drm_calloc(size_t nmemb, size_t size)
+ {
diff --git a/nvidia-kmod.spec b/nvidia-kmod.spec
index 8d4fd73..457fe05 100644
--- a/nvidia-kmod.spec
+++ b/nvidia-kmod.spec
@@ -10,17 +10,15 @@
Name: nvidia-kmod
Epoch: 3
-Version: 545.29.06
+Version: 550.40.07
# Taken over by kmodtool
-Release: 2%{?dist}
+Release: 1%{?dist}
Summary: NVIDIA display driver kernel module
License: Redistributable, no modification permitted
URL: https://www.nvidia.com/
Source11: nvidia-kmodtool-excludekernel-filterfile
Patch0: make_modeset_default.patch
-# https://forums.developer.nvidia.com/t/545-29-06-18-1-flip-event-timeout-e...
-Patch1: nvidia-drm-hotplug-workqueue.patch
# needed for plague to make sure it builds for i586 and i686
ExclusiveArch: x86_64 aarch64
@@ -55,7 +53,6 @@ echo "Using original nvidia defaults"
echo "Set nvidia to fbdev=1 modeset=1"
%patch -P0 -p1
%endif
-%patch -P1 -p1
for kernel_version in %{?kernel_versions} ; do
cp -a kernel _kmod_build_${kernel_version%%___*}
done
@@ -89,6 +86,9 @@ done
%changelog
+* Wed Jan 24 2024 Leigh Scott <leigh123linux(a)gmail.com> - 3:550.40.07-1
+- Update to 550.40.07 beta
+
* Wed Dec 27 2023 Leigh Scott <leigh123linux(a)gmail.com> - 3:545.29.06-2
- Add fix for 'Flip event timeout' (rfbz6808)
10 months
[xorg-x11-drv-nvidia] Update to 550.40.07 beta
by Leigh Scott
commit 706b029b0aad5308358ade5207c9b425cbe2fe7f
Author: Leigh Scott <leigh123linux(a)gmail.com>
Date: Wed Jan 24 16:03:17 2024 +0000
Update to 550.40.07 beta
sources | 4 ++--
xorg-x11-drv-nvidia.spec | 10 +++++-----
2 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/sources b/sources
index ed53c68..3ebe464 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (NVIDIA-Linux-x86_64-545.29.06.run) = b80e1643471c48477479a48d2e8a9c4a241874d6207ddeaccdeedd3f9f1121d79be90be07d37df094fa6f7cc5806857bf2368337ba40cb5cfe6d04c117c5c45d
-SHA512 (NVIDIA-Linux-aarch64-545.29.06.run) = 10c92fd02b1f452f79bb9431197e701e103ca65cc7386cc8e8a05ae5af94f0173310997690fe1809dfb19193f108bd482485942ca11342ec35650bd74947e8c5
+SHA512 (NVIDIA-Linux-x86_64-550.40.07.run) = 7e16f09b1924d3c375dc05710b5bb7c4d94c4b5c459e9b9c88a8f864d7719b84495ca89a27b2bb4ff08bbac1a10d810dc249050b07f2c804319792ac9bbbdad4
+SHA512 (NVIDIA-Linux-aarch64-550.40.07.run) = d0c7e735bdd5d2a193c10176691dbc23ddf46ca4bc31897f767c26c28f115ffd8cde65f5437038140c66d4009418b448929054990d9a77dbbbdc49160976e6d1
diff --git a/xorg-x11-drv-nvidia.spec b/xorg-x11-drv-nvidia.spec
index 8e34b0e..670d735 100644
--- a/xorg-x11-drv-nvidia.spec
+++ b/xorg-x11-drv-nvidia.spec
@@ -21,8 +21,8 @@
Name: xorg-x11-drv-nvidia
Epoch: 3
-Version: 545.29.06
-Release: 2%{?dist}
+Version: 550.40.07
+Release: 1%{?dist}
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
License: Redistributable, no modification permitted
@@ -399,8 +399,6 @@ install -p -m 0755 systemd/nvidia-sleep.sh %{buildroot}%{_bindir}
# Firmware
mkdir -p %{buildroot}%{_firmwarepath}/nvidia/%{version}/
install -p -m 0444 firmware/gsp_{ga,tu}10x.bin %{buildroot}%{_firmwarepath}/nvidia/%{version}/
-mkdir -p %{buildroot}%{_datadir}/nvidia/rim/
-install -p -m 0444 RIM_GH100PROD.swidtag %{buildroot}%{_datadir}/nvidia/rim/
%pre
if [ "$1" -eq "1" ]; then
@@ -471,7 +469,6 @@ fi ||:
%dir %{_datadir}/nvidia
%{_datadir}/nvidia/nvidia-application-profiles-*
%{_datadir}/nvidia/nvoptix.bin
-%{_datadir}/nvidia/rim/
%files kmodsrc
%dir %{_datadir}/nvidia-kmod-%{version}
@@ -614,6 +611,9 @@ fi ||:
%endif
%changelog
+* Wed Jan 24 2024 Leigh Scott <leigh123linux(a)gmail.com> - 3:550.40.07-1
+- Update to 550.40.07 beta
+
* Mon Dec 18 2023 Leigh Scott <leigh123linux(a)gmail.com> - 3:545.29.06-2
- Do not mark nvidia-powerd unit as failed if the binary exits
10 months
[telegram-desktop] Update to 4.14.9.
by Vasiliy Glazov
commit b7c0d649c26cccc499e0ea27f4ead9c0b95a8a2b
Author: Vasiliy Glazov <vascom2(a)gmail.com>
Date: Mon Jan 22 09:11:35 2024 +0300
Update to 4.14.9.
sources | 2 +-
telegram-desktop.spec | 9 ++++++---
2 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/sources b/sources
index c85a09d..0e3ec3a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (tdesktop-4.14.4-full.tar.gz) = 863e22e5d0809736a6f05e64ae7ceb5e93a1135c26f8e00d45a45cbb6bb90da3dafe43f9249aa07b6183e6e06aa0801613b72b033b7a05323c27556a25ca5854
+SHA512 (tdesktop-4.14.9-full.tar.gz) = 802ec7eeef75ac97934cb0437c24dab62670f7029a1a5e44866cd77d39d7b572b79106c0b73bd742786548db938c49ba2e559123963ef0201adaa279b4cf9fa4
diff --git a/telegram-desktop.spec b/telegram-desktop.spec
index 7b56991..822a25a 100644
--- a/telegram-desktop.spec
+++ b/telegram-desktop.spec
@@ -5,7 +5,7 @@
%global optflags %(echo %{optflags} | sed 's/-g /-g1 /')
Name: telegram-desktop
-Version: 4.14.4
+Version: 4.14.9
Release: 1%{?dist}
# Application and 3rd-party modules licensing:
@@ -169,10 +169,13 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
%{_metainfodir}/*.metainfo.xml
%changelog
-* Tue Jan 09 2024 Vasiliy Glaxov <vascom2(a)gmail.com> - 4.14.4-1
+* Mon Jan 22 2024 Vasiliy Glazov <vascom2(a)gmail.com> - 4.14.9-1
+- Update to 4.14.9
+
+* Tue Jan 09 2024 Vasiliy Glazov <vascom2(a)gmail.com> - 4.14.4-1
- Update to 4.14.4
-* Mon Jan 08 2024 Vasiliy Glaxov <vascom2(a)gmail.com> - 4.14.3-1
+* Mon Jan 08 2024 Vasiliy Glazov <vascom2(a)gmail.com> - 4.14.3-1
- Update to 4.14.3
* Tue Dec 26 2023 Vasiliy Glazov <vascom2(a)gmail.com> - 4.13.1-1
10 months
[wl-kmod] Fix SPEC file for RHEL 9.x and RHEL 8.x - RFBZ#6937
by Nicolas Viéville
commit 02cebcadcdda620f1b5c0592795cef072fcb3cb8
Author: Nicolas Viéville <nicolas.vieville(a)uphf.fr>
Date: Sun Jan 21 20:26:48 2024 +0100
Fix SPEC file for RHEL 9.x and RHEL 8.x - RFBZ#6937
wl-kmod.spec | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
---
diff --git a/wl-kmod.spec b/wl-kmod.spec
index da8ed2e..aadcc40 100644
--- a/wl-kmod.spec
+++ b/wl-kmod.spec
@@ -10,7 +10,7 @@
Name: wl-kmod
Version: 6.30.223.271
-Release: 49%{?dist}
+Release: 50%{?dist}
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -311,6 +311,10 @@ pushd %{name}-%{version}-src
%{__sed} -i 's/ >= KERNEL_VERSION(6, 0, 0)/ >= KERNEL_VERSION(4, 18, 0)/g' src/wl/sys/wl_cfg80211_hybrid.c
%{__sed} -i 's/ >= KERNEL_VERSION(6, 1, 0)/ >= KERNEL_VERSION(4, 18, 0)/g' src/wl/sys/wl_cfg80211_hybrid.c
%endif
+ %if %{kvr} >= 513
+ # Apply to EL 8.9 point release and later
+ # > No changes currently needed for EL 8.9 point release
+ %endif
%endif
%endif
%if 0%{?rhel} == 9
@@ -340,6 +344,10 @@ pushd %{name}-%{version}-src
# Apply to EL 9.2 point release and later
# > No changes currently needed for EL 9.2 point release
%endif
+ %if %{kvr} >= 362
+ # Apply to EL 9.3 point release and later
+ %{__sed} -i 's/ >= KERNEL_VERSION(6, [01], 0)/ >= KERNEL_VERSION(5, 14, 0)/g' src/wl/sys/wl_cfg80211_hybrid.c
+ %endif
%endif
%endif
popd
@@ -368,6 +376,9 @@ chmod 0755 $RPM_BUILD_ROOT%{kmodinstdir_prefix}*%{kmodinstdir_postfix}/* || :
%{?akmod_install}
%changelog
+* Sun Jan 21 2024 Nicolas Viéville <nicolas.vieville(a)uphf.fr> - 6.30.223.271-50
+- Fix SPEC file for RHEL 9.x and RHEL 8.x - RFBZ#6937
+
* Mon Sep 25 2023 Nicolas Viéville <nicolas.vieville(a)uphf.fr> - 6.30.223.271-49
- Spec fix build release tag
- Fix SPEC file for RHEL 9.x and RHEL 8.x
10 months
[vdr-markad/f38] Update to 3.4.6
by Martin Gansser
Summary of changes:
4d16dee... Update to 3.4.6 (*)
(*) This commit already existed in another branch; no separate mail sent
10 months
[vdr-markad/f39] Update to 3.4.6
by Martin Gansser
Summary of changes:
4d16dee... Update to 3.4.6 (*)
(*) This commit already existed in another branch; no separate mail sent
10 months