rpms/nvidia-173xx-kmod/F-20 nvidia-173xx-kmod.spec,1.105,1.106
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25110
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
correct patch version in spec
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-20/nvidia-173xx-kmod.spec,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- nvidia-173xx-kmod.spec 12 Nov 2014 16:29:43 -0000 1.105
+++ nvidia-173xx-kmod.spec 12 Nov 2014 16:32:06 -0000 1.106
@@ -18,7 +18,7 @@
# http://us.download.nvidia.com/XFree86/Linux-x86_64/%{version}/NVIDIA-Linu...
Source0: nvidia-kmod-data-%{version}.tar.bz2
-Patch0: nvidia_3.14_kernel.patch
+Patch0: nvidia_3.17_kernel.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
10 years
rpms/nvidia-173xx-kmod/F-20 nvidia_3.17_kernel.patch, NONE, 1.1 nvidia_3.14_kernel.patch, 1.1, NONE
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24977
Added Files:
nvidia_3.17_kernel.patch
Removed Files:
nvidia_3.14_kernel.patch
Log Message:
add patch
nvidia_3.17_kernel.patch:
conftest.sh | 6 +++---
nv-linux.h | 6 ++++++
nvacpi.c | 3 +++
3 files changed, 12 insertions(+), 3 deletions(-)
--- NEW FILE nvidia_3.17_kernel.patch ---
--- a/usr/src/nv/conftest.sh 2013-11-28 02:47:10.000000000 +0400
+++ b/usr/src/nv/conftest.sh 2014-10-23 15:42:09.474734343 +0400
@@ -943,7 +943,7 @@ compile_test() {
# and how many arguments it takes.
#
echo "$CONFTEST_PREAMBLE
- #include <acpi/acpi.h>
+ #include <linux/acpi.h>
void conftest_acpi_walk_namespace(void) {
acpi_walk_namespace();
}" > conftest$$.c
@@ -958,7 +958,7 @@ compile_test() {
fi
echo "$CONFTEST_PREAMBLE
- #include <acpi/acpi.h>
+ #include <linux/acpi.h>
void conftest_acpi_walk_namespace(void) {
acpi_walk_namespace(0, NULL, 0, NULL, NULL, NULL, NULL);
}" > conftest$$.c
@@ -974,7 +974,7 @@ compile_test() {
fi
echo "$CONFTEST_PREAMBLE
- #include <acpi/acpi.h>
+ #include <linux/acpi.h>
void conftest_acpi_walk_namespace(void) {
acpi_walk_namespace(0, NULL, 0, NULL, NULL, NULL);
}" > conftest$$.c
--- a/usr/src/nv/nvacpi.c
+++ b/usr/src/nv/nvacpi.c
@@ -259,7 +259,10 @@ static int nv_acpi_remove(struct acpi_de
if (pNvAcpiObject->notify_handler_installed)
{
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
+ /* beginning with 3.13, acpi_remove_notify_handler() waits for events to finish */
NV_ACPI_OS_WAIT_EVENTS_COMPLETE();
+#endif
// remove event notifier
status = acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY, nv_acpi_event);
--- a/usr/src/nv/nv-linux.h
+++ b/usr/src/nv/nv-linux.h
@@ -206,8 +206,14 @@ extern int nv_pat_mode;
#endif
#if defined(CONFIG_ACPI)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 17, 0)
#include <acpi/acpi.h>
#include <acpi/acpi_drivers.h>
+#endif
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 14, 0)
+#include <linux/acpi.h>
+#include <acpi/acpi_bus.h>
+#endif
#if defined(NV_ACPI_DEVICE_OPS_HAS_MATCH) || defined(ACPI_VIDEO_HID)
#define NV_LINUX_ACPI_EVENTS_SUPPORTED 1
#endif
--- nvidia_3.14_kernel.patch DELETED ---
10 years
rpms/nvidia-173xx-kmod/F-20 nvidia-173xx-kmod.spec,1.104,1.105
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24865
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Wed Nov 12 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 173.14.39-4
- patch for 3.17 kernel
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-20/nvidia-173xx-kmod.spec,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- nvidia-173xx-kmod.spec 10 Nov 2014 17:53:22 -0000 1.104
+++ nvidia-173xx-kmod.spec 12 Nov 2014 16:29:43 -0000 1.105
@@ -3,12 +3,12 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%global buildforkernels newest
+%global buildforkernels current
Name: nvidia-173xx-kmod
Version: 173.14.39
# Taken over by kmodtool
-Release: 3%{?dist}.16
+Release: 4%{?dist}
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -90,6 +90,9 @@
%changelog
+* Wed Nov 12 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 173.14.39-4
+- patch for 3.17 kernel
+
* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.39-3.16
- Rebuilt for kernel
10 years
rpms/wl-kmod/F-20 wl-kmod.spec,1.133,1.134
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11551
Modified Files:
wl-kmod.spec
Log Message:
* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.2
- Rebuilt for kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-20/wl-kmod.spec,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- wl-kmod.spec 31 Oct 2014 22:45:46 -0000 1.133
+++ wl-kmod.spec 10 Nov 2014 17:54:10 -0000 1.134
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 6.30.223.248
-Release: 4%{?dist}.1
+Release: 4%{?dist}.2
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -94,6 +94,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.2
+- Rebuilt for kernel
+
* Fri Oct 31 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-4.1
- Rebuilt for kernel
10 years
rpms/nvidia-kmod/F-20 nvidia-kmod.spec,1.204,1.205
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11431
Modified Files:
nvidia-kmod.spec
Log Message:
* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1:331.89-2.19
- Rebuilt for kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-20/nvidia-kmod.spec,v
retrieving revision 1.204
retrieving revision 1.205
diff -u -r1.204 -r1.205
--- nvidia-kmod.spec 31 Oct 2014 22:45:39 -0000 1.204
+++ nvidia-kmod.spec 10 Nov 2014 17:54:04 -0000 1.205
@@ -9,7 +9,7 @@
Epoch: 1
Version: 331.89
# Taken over by kmodtool
-Release: 2%{?dist}.18
+Release: 2%{?dist}.19
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -97,6 +97,9 @@
%changelog
+* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1:331.89-2.19
+- Rebuilt for kernel
+
* Fri Oct 31 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1:331.89-2.18
- Rebuilt for kernel
10 years
rpms/nvidia-304xx-kmod/F-20 nvidia-304xx-kmod.spec,1.60,1.61
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11295
Modified Files:
nvidia-304xx-kmod.spec
Log Message:
* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1.18
- Rebuilt for kernel
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/F-20/nvidia-304xx-kmod.spec,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- nvidia-304xx-kmod.spec 31 Oct 2014 22:45:28 -0000 1.60
+++ nvidia-304xx-kmod.spec 10 Nov 2014 17:53:28 -0000 1.61
@@ -8,7 +8,7 @@
Name: nvidia-304xx-kmod
Version: 304.123
# Taken over by kmodtool
-Release: 1%{?dist}.17
+Release: 1%{?dist}.18
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -79,6 +79,9 @@
%changelog
+* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1.18
+- Rebuilt for kernel
+
* Fri Oct 31 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1.17
- Rebuilt for kernel
10 years
rpms/nvidia-173xx-kmod/F-20 nvidia-173xx-kmod.spec,1.103,1.104
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11176
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.39-3.16
- Rebuilt for kernel
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-20/nvidia-173xx-kmod.spec,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- nvidia-173xx-kmod.spec 31 Oct 2014 22:45:22 -0000 1.103
+++ nvidia-173xx-kmod.spec 10 Nov 2014 17:53:22 -0000 1.104
@@ -8,7 +8,7 @@
Name: nvidia-173xx-kmod
Version: 173.14.39
# Taken over by kmodtool
-Release: 3%{?dist}.15
+Release: 3%{?dist}.16
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -90,6 +90,9 @@
%changelog
+* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.39-3.16
+- Rebuilt for kernel
+
* Fri Oct 31 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.39-3.15
- Rebuilt for kernel
10 years
rpms/xtables-addons-kmod/F-20 xtables-addons-kmod.spec,1.80,1.81
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11052
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 2.5-1.28
- Rebuilt for kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/F-20/xtables-addons-kmod.spec,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- xtables-addons-kmod.spec 31 Oct 2014 22:45:17 -0000 1.80
+++ xtables-addons-kmod.spec 10 Nov 2014 17:53:17 -0000 1.81
@@ -8,7 +8,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 2.5
-Release: 1%{?dist}.27
+Release: 1%{?dist}.28
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -65,6 +65,9 @@
rm -rf %{buildroot}
%changelog
+* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 2.5-1.28
+- Rebuilt for kernel
+
* Fri Oct 31 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 2.5-1.27
- Rebuilt for kernel
10 years
rpms/VirtualBox-kmod/F-20 VirtualBox-kmod.spec,1.80,1.81
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/VirtualBox-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10927
Modified Files:
VirtualBox-kmod.spec
Log Message:
* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 4.3.18-1.4
- Rebuilt for kernel
Index: VirtualBox-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-kmod/F-20/VirtualBox-kmod.spec,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- VirtualBox-kmod.spec 31 Oct 2014 22:45:12 -0000 1.80
+++ VirtualBox-kmod.spec 10 Nov 2014 17:53:12 -0000 1.81
@@ -20,7 +20,7 @@
Name: VirtualBox-kmod
Version: 4.3.18
-Release: 1%{?prerel:.%{prerel}}%{?dist}.3
+Release: 1%{?prerel:.%{prerel}}%{?dist}.4
Summary: Kernel module for VirtualBox
Group: System Environment/Kernel
@@ -98,6 +98,9 @@
%changelog
+* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 4.3.18-1.4
+- Rebuilt for kernel
+
* Fri Oct 31 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 4.3.18-1.3
- Rebuilt for kernel
10 years
rpms/staging-kmod/F-20 staging-kmod.spec,1.79,1.80
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/staging-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10810
Modified Files:
staging-kmod.spec
Log Message:
* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 3.16.2-1.8
- Rebuilt for kernel
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-20/staging-kmod.spec,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- staging-kmod.spec 31 Oct 2014 22:45:05 -0000 1.79
+++ staging-kmod.spec 10 Nov 2014 17:53:05 -0000 1.80
@@ -26,7 +26,7 @@
Name: staging-kmod
Version: 3.16.2
-Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.7
+Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.8
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -150,6 +150,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Mon Nov 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 3.16.2-1.8
+- Rebuilt for kernel
+
* Fri Oct 31 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 3.16.2-1.7
- Rebuilt for kernel
10 years