rpms/staging-kmod/F-17 declare_zsmalloc_license_and_init_exit_functions.patch, NONE, 1.1 staging-kmod.spec, 1.45, 1.46
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24678
Modified Files:
staging-kmod.spec
Added Files:
declare_zsmalloc_license_and_init_exit_functions.patch
Log Message:
* Tue Jul 31 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.5-2.1
- Fix zram
declare_zsmalloc_license_and_init_exit_functions.patch:
zsmalloc-main.c | 29 +++++++++--------------------
1 file changed, 9 insertions(+), 20 deletions(-)
--- NEW FILE declare_zsmalloc_license_and_init_exit_functions.patch ---
diff --git a/drivers/staging/zsmalloc/zsmalloc-main.c b/drivers/staging/zsmalloc/zsmalloc-main.c
index fb54a9b94c33..4ba1911f97ff 100644
--- a/drivers/staging/zsmalloc/zsmalloc-main.c
+++ b/drivers/staging/zsmalloc/zsmalloc-main.c
@@ -471,13 +471,7 @@ static struct page *find_get_zspage(struct size_class *class)
}
-/*
- * If this becomes a separate module, register zs_init() with
- * module_init(), zs_exit with module_exit(), and remove zs_initialized
-*/
-static int zs_initialized;
-
-static int zs_cpu_notifier(struct notifier_block *nb, unsigned long action,
+static int zs_cpu_notifier(struct notifier_block *nb, unsigned long action,
void *pcpu)
{
int cpu = (long)pcpu;
@@ -508,7 +502,7 @@ static struct notifier_block zs_cpu_nb = {
.notifier_call = zs_cpu_notifier
};
-static void zs_exit(void)
+static void __exit zs_exit(void)
{
int cpu;
@@ -517,7 +511,7 @@ static void zs_exit(void)
unregister_cpu_notifier(&zs_cpu_nb);
}
-static int zs_init(void)
+static int __init zs_init(void)
{
int cpu, ret;
@@ -562,17 +556,6 @@ struct zs_pool *zs_create_pool(const char *name, gfp_t flags)
}
- /*
- * If this becomes a separate module, register zs_init with
- * module_init, and remove this block
- */
- if (!zs_initialized) {
- error = zs_init();
- if (error)
- goto cleanup;
- zs_initialized = 1;
- }
-
pool->flags = flags;
pool->name = name;
@@ -799,3 +782,9 @@ u64 zs_get_total_size_bytes(struct zs_pool *pool)
return npages << PAGE_SHIFT;
}
EXPORT_SYMBOL_GPL(zs_get_total_size_bytes);
+
+MODULE_AUTHOR("Nitin Gupta <ngupta at vflare.org>");
+MODULE_LICENSE("Dual BSD/GPL");
+
+module_init(zs_init);
+module_exit(zs_exit);
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-17/staging-kmod.spec,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- staging-kmod.spec 31 Jul 2012 18:52:55 -0000 1.45
+++ staging-kmod.spec 31 Jul 2012 19:06:18 -0000 1.46
@@ -28,6 +28,8 @@
URL: http://www.kernel.org/
# a script to create this archive is part of staging-kmod-addons
Source0: linux-staging-%{version}%{?prever:-%{prever}}.tar.bz2
+# taken from http://driverdev.linuxdriverproject.org/pipermail/devel/2012-June/027381....
+Patch1: declare_zsmalloc_license_and_init_exit_functions.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{_bindir}/kmodtool
@@ -52,6 +54,10 @@
# disable drivers that are enabled in Fedora's kernel, as those otherweise would get build
sed -i 's|.*DABUSB.*||; s|.*SE401.*||; s|.*VICAM.*||; s|.CRYSTALH||; s|.*LIRC.*||; s|.*R8712U.*||;' $(find linux-staging-%{version}%{?prever:-%{prever}}/drivers/staging/ -name 'Makefile')
+cd linux-staging-%{version}%{?prever:-%{prever}}
+%patch1 -p1
+cd -
+
# seperate directories for each kernel variant (PAE, non-PAE, ...) we build the modules for
for kernel_version in %{?kernel_versions} ; do
cp -a linux-staging-%{version}%{?prever:-%{prever}}/ _kmod_build_${kernel_version%%___*}
@@ -136,6 +142,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Tue Jul 31 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.5-2.1
+- Fix zram
+
* Tue Jul 31 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.5-1.1
- Update to 3.5
- Disable Mei, now a proper driver
12 years, 3 months
rpms/staging-kmod/F-17 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 staging-kmod.spec, 1.44, 1.45
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv22127
Modified Files:
.cvsignore sources staging-kmod.spec
Log Message:
* Tue Jul 31 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.5-1.1
- Update to 3.5
- Disable Mei, now a proper driver
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-17/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore 17 Jun 2012 13:17:44 -0000 1.7
+++ .cvsignore 31 Jul 2012 18:52:55 -0000 1.8
@@ -1 +1 @@
-linux-staging-3.4.2.tar.bz2
+linux-staging-3.5.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-17/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources 17 Jun 2012 13:17:44 -0000 1.7
+++ sources 31 Jul 2012 18:52:55 -0000 1.8
@@ -1 +1 @@
-e8134cbb4b279b63a3f9af2173aa09fe linux-staging-3.4.2.tar.bz2
+6fdd7ec12751f4f6fa080a7bdca0eb9d linux-staging-3.5.tar.bz2
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-17/staging-kmod.spec,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- staging-kmod.spec 31 Jul 2012 06:36:06 -0000 1.44
+++ staging-kmod.spec 31 Jul 2012 18:52:55 -0000 1.45
@@ -1,7 +1,7 @@
# akmods not supported
# which drivers to built
-%global stgdrvs ASUS_OLED BCM_WIMAX EASYCAP ECHO EPL ET131X FB_UDL FB_XGI FT1000_USB HECI IDE_PHISON INTEL_MEI LINE6_USB RTS_PSTOR RAMZSWAP R8187SE RTL8192SU RTL8192E RTL8192U RTS5139 SLICOSS SOLO6X10 SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_ENESTORAGE USB_WPAN_HCD W35UND PRISM2_USB VT6655 VT6656 ZCACHE ZRAM ZSMALLOC
+%global stgdrvs ASUS_OLED BCM_WIMAX EASYCAP ECHO EPL ET131X FB_UDL FB_XGI FT1000_USB HECI IDE_PHISON LINE6_USB RTS_PSTOR RAMZSWAP R8187SE RTL8192SU RTL8192E RTL8192U RTS5139 SLICOSS SOLO6X10 SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_ENESTORAGE USB_WPAN_HCD USBIP_CORE W35UND PRISM2_USB VT6655 VT6656 ZCACHE ZRAM ZSMALLOC
# avoid this error:
# /usr/lib/rpm/debugedit: canonicalization unexpectedly shrank by one character
@@ -12,7 +12,6 @@
# VIDEO_TM6000
# VIDEO_DT3155
# CXT1E1
-# USBIP_CORE
# DVB_CXD2099
# RAMSTER
@@ -20,8 +19,8 @@
#global prever rc8
Name: staging-kmod
-Version: 3.4.2
-Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.7
+Version: 3.5
+Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.1
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -90,6 +89,9 @@
RTL8192E)
configops="${configops} CONFIG_RTLLIB=m RTLLIB_CRYPTO_CCMP=m RTLLIB_CRYPTO_TKIP=m RTLLIB_CRYPTO_WEP=m "
;;
+ USBIP_CORE)
+ configops="${configops} CONFIG_USBIP_HOST=m CONFIG_USBIP_VHCI_HCD=m"
+ ;;
SLICOSS)
# does not build on ppc and ppc64 as of 011109; tested with 2.6.30.9 and 2.6.31.5
( [[ "%{_target_cpu}" == "ppc" ]] || [[ "%{_target_cpu}" == "ppc64" ]] ) && continue
@@ -134,23 +136,12 @@
rm -rf $RPM_BUILD_ROOT
%changelog
-* Tue Jul 31 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.4.2-1.7
-- Rebuilt for updated kernel
-
-* Sat Jul 21 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.4.2-1.6
-- Rebuilt for updated kernel
-
-* Tue Jul 17 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.4.2-1.5
-- Rebuilt for updated kernel
-
-* Fri Jul 06 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.4.2-1.4
-- Rebuilt for updated kernel
-
-* Thu Jun 28 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.4.2-1.3
-- Rebuilt for updated kernel
+* Tue Jul 31 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.5-1.1
+- Update to 3.5
+- Disable Mei, now a proper driver
-* Thu Jun 21 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.4.2-1.2
-- Rebuilt for updated kernel
+* Mon Jul 16 2012 Jonathan Dieter <jdieter(a)gmail.com> - 3.4.2-2.1
+- Enable USBIP
* Sun Jun 17 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.4.2-1.1
- Update to 3.4.2
12 years, 3 months
rpms/staging-kmod-addons/F-17 usbip-client.service, NONE, 1.1 usbip-server.service, NONE, 1.1 usbip.configuration, NONE, 1.1 .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 staging-kmod-addons.spec, 1.9, 1.10
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod-addons/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21642
Modified Files:
.cvsignore sources staging-kmod-addons.spec
Added Files:
usbip-client.service usbip-server.service usbip.configuration
Log Message:
* Tue Jul 31 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.5-1.1
- Update to 3.5
- Disable Mei, now a proper driver
--- NEW FILE usbip-client.service ---
[Unit]
Description=USB/IP client modules
After=syslog.target
[Service]
Type=OneShot
RemainAfterExit=true
ExecStart=/sbin/modprobe -qab vhci-hcd
ExecStop=/sbin/modprobe -qabr vhci-hcd
[Install]
WantedBy=multi-user.target
--- NEW FILE usbip-server.service ---
[Unit]
Description=USB/IP server daemon
After=syslog.target
[Service]
EnvironmentFile=-/etc/default/usbip
ExecStartPre=/sbin/modprobe -qab usbip_host
ExecStart=/usr/sbin/usbipd $OPTIONS
ExecStop=/sbin/modprobe -qabr usbip_host
[Install]
WantedBy=multi-user.target
--- NEW FILE usbip.configuration ---
# To enable debugging mode, uncomment the following line
#OPTIONS="-d"
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-17/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore 17 Jun 2012 13:20:11 -0000 1.7
+++ .cvsignore 31 Jul 2012 18:50:29 -0000 1.8
@@ -1 +1 @@
-linux-staging-3.4.2.tar.bz2
+linux-staging-3.5.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-17/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources 17 Jun 2012 13:20:11 -0000 1.7
+++ sources 31 Jul 2012 18:50:29 -0000 1.8
@@ -1 +1 @@
-e8134cbb4b279b63a3f9af2173aa09fe linux-staging-3.4.2.tar.bz2
+6fdd7ec12751f4f6fa080a7bdca0eb9d linux-staging-3.5.tar.bz2
Index: staging-kmod-addons.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-17/staging-kmod-addons.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- staging-kmod-addons.spec 17 Jun 2012 13:20:11 -0000 1.9
+++ staging-kmod-addons.spec 31 Jul 2012 18:50:29 -0000 1.10
@@ -1,12 +1,12 @@
# drivers that we ship; to be synced with staging-kmod.spec
-%global stgdrvs ASUS_OLED BCM_WIMAX EASYCAP ECHO EPL ET131X FB_UDL FB_XGI FT1000_USB HECI IDE_PHISON INTEL_MEI LINE6_USB RTS_PSTOR RAMZSWAP R8187SE RTL8192SU RTL8192E RTL8192U RTS5139 SLICOSS SOLO6X10 SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_ENESTORAGE USB_WPAN_HCD W35UND PRISM2_USB VT6655 VT6656 ZCACHE ZRAM ZSMALLOC
+%global stgdrvs ASUS_OLED BCM_WIMAX EASYCAP ECHO EPL ET131X FB_UDL FB_XGI FT1000_USB HECI IDE_PHISON LINE6_USB RTS_PSTOR RAMZSWAP R8187SE RTL8192SU RTL8192E RTL8192U RTS5139 SLICOSS SOLO6X10 SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 USB_ENESTORAGE USB_WPAN_HCD USBIP_CORE W35UND PRISM2_USB VT6655 VT6656 ZCACHE ZRAM ZSMALLOC
# makes handling for rc kernels a whole lot easier:
#global prever rc8
Name: staging-kmod-addons
-Version: 3.4.2
+Version: 3.5
Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}
Summary: Documentation and shared parts for the kmod-staging packages
@@ -17,15 +17,44 @@
# bash $(rpm --eval '%{_sourcedir}')/create-linux-staging-tarball.sh 2.6.30.8
Source0: linux-staging-%{version}%{?prever:-%{prever}}.tar.bz2
Source1: create-linux-staging-tarball.sh
-
+Source2: usbip-server.service
+Source3: usbip-client.service
+Source4: usbip.configuration
Provides: staging-kmod-common = %{version}-%{release}
-BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRequires: glib2-devel libtool pkgconfig
+BuildRequires: libsysfs-devel
%description
Documentation for some of the kernel modules from linux-staging.
+%package -n usbip
+License: GPLv2+
+Summary: USB/IP userspace
+Group: System Environment/Daemons
+Requires: %{name} = %{version}
+Requires: hwdata
+Requires: systemd-units
+Requires(post): systemd-units
+Requires(preun): systemd-units
+Requires(postun): systemd-units
+
+%description -n usbip
+Userspace for USB/IP from linux-staging
+
+
+%package -n usbip-devel
+License: GPLv2+
+Summary: USB/IP headers and development libraries
+Group: System Environment/Libraries
+Requires: usbip%{?_isa} = %{version}
+
+%description -n usbip-devel
+This package contains headers and static libraries for USB/IP userspace
+development
+
+
%prep
%setup -q -n linux-staging-%{version}%{?prever:-%{prever}}
# docs only for drivers that we ship
@@ -41,24 +70,85 @@
%build
-echo "Nothing to build"
+# Build usbip userspace
+cd drivers/staging/usbip/userspace
+./autogen.sh
+%configure --disable-static --with-usbids-dir=/usr/share/hwdata
+make %{?_smp_mflags}
%install
-rm -rf $RPM_BUILD_ROOT; mkdir $RPM_BUILD_ROOT
-echo "Nothing to install"
-
+# Install usbip userspace
+cd drivers/staging/usbip/userspace
+%makeinstall
+rm -f %{buildroot}%{_libdir}/*.la
+mkdir -p %{buildroot}%{_unitdir}
+install -m 644 %{SOURCE2} %{buildroot}%{_unitdir}
+install -m 644 %{SOURCE3} %{buildroot}%{_unitdir}
+mkdir -p %{buildroot}%{_sysconfdir}/default
+install -m 644 %{SOURCE4} %{buildroot}%{_sysconfdir}/default/usbip
+
+
+%post -n usbip
+/sbin/ldconfig
+if [ $1 -eq 1 ] ; then
+ # Initial installation
+ /bin/systemctl daemon-reload >/dev/null 2>&1 || :
+fi
+
+%preun -n usbip
+if [ $1 -eq 0 ] ; then
+ # Package removal, not upgrade
+ /bin/systemctl --no-reload disable usbip-server.service > /dev/null 2>&1 || :
+ /bin/systemctl stop usbip-server.service > /dev/null 2>&1 || :
+ /bin/systemctl --no-reload disable usbip-client.service > /dev/null 2>&1 || :
+ /bin/systemctl stop usbip-client.service > /dev/null 2>&1 || :
+fi
+
+%postun -n usbip
+/sbin/ldconfig
+/bin/systemctl daemon-reload >/dev/null 2>&1 || :
+if [ $1 -ge 1 ] ; then
+ # Package upgrade, not uninstall
+ /bin/systemctl try-restart usbip-server.service >/dev/null 2>&1 || :
+ /bin/systemctl try-restart usbip-client.service >/dev/null 2>&1 || :
+fi
-%clean
-rm -rf $RPM_BUILD_ROOT
+%files -n usbip-devel
+%defattr(-,root,root,-)
+%doc drivers/staging/usbip/userspace/COPYING
+%{_includedir}/*
+%{_libdir}/libusbip.so
%files
%defattr(-,root,root,-)
%doc COPYING .doc/*
+%files -n usbip
+%defattr(-,root,root,-)
+%doc COPYING
+%{_sbindir}/usbip*
+%{_libdir}/libusbip.so.*
+%{_mandir}/man8/*
+%{_unitdir}/*
+%config(noreplace) %{_sysconfdir}/default/*
+
%changelog
+* Tue Jul 31 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.5-1.1
+- Update to 3.5
+- Disable Mei, now a proper driver
+
+* Wed Jul 25 2012 Jonathan Dieter <jdieter(a)gmail.com> - 3.4.2-3
+- Split USB/IP userspace into subpackage
+- Add systemd service for server
+
+* Mon Jul 16 2012 Jonathan Dieter <jdieter(a)gmail.com> - 3.4.2-2
+- Enable userspace for USB/IP
+- Add devel subpackage
+- Remove noarch as userspace is dependent on architecture
+
* Sun Jun 17 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.4.2-1
- Update to 3.4.2
- Enable USB_WPAN_HCD
12 years, 3 months
rpms/nvidia-kmod/devel 3.6_kernel.patch, NONE, 1.1 nvidia-kmod.spec, 1.100, 1.101
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10570
Modified Files:
nvidia-kmod.spec
Added Files:
3.6_kernel.patch
Log Message:
* Tue Jul 31 2012 Leigh Scott <leigh123linux(a)googlemail.com> - 1:304.30-1
- Update to 304.30
3.6_kernel.patch:
nv-acpi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- NEW FILE 3.6_kernel.patch ---
--- a/kernel/nv-acpi.c
+++ b/kernel/nv-acpi.c
@@ -300,7 +300,7 @@ static int nv_acpi_remove(struct acpi_de
if (pNvAcpiObject->notify_handler_installed)
{
// no status returned for this function
- acpi_os_wait_events_complete(NULL);
+ acpi_os_wait_events_complete();
// remove event notifier
status = acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY, nv_acpi_event);
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- nvidia-kmod.spec 31 Jul 2012 17:21:52 -0000 1.100
+++ nvidia-kmod.spec 31 Jul 2012 17:41:19 -0000 1.101
@@ -25,6 +25,8 @@
Source11: nvidia-kmodtool-excludekernel-filterfile
+Patch0: 3.6_kernel.patch
+
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -47,6 +49,14 @@
kmodtool --target %{_target_cpu} --repo rpmfusion --kmodname %{name} --filterfile %{SOURCE11} --obsolete-name nvidia-newest --obsolete-version "%{version}" %{?buildforkernels:--%{buildforkernels}} %{?kernels:--for-kernels "%{?kernels}"} 2>/dev/null
%setup -q -c -T -a 0
+# patch loop
+for arch in x86 x64
+do
+pushd nvidiapkg-${arch}
+%patch0 -p1
+popd
+done
+
for kernel_version in %{?kernel_versions} ; do
%ifarch %{ix86}
12 years, 3 months
rpms/nvidia-kmod/devel .cvsignore, 1.45, 1.46 nvidia-kmod.spec, 1.99, 1.100 sources, 1.45, 1.46
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv8959
Modified Files:
.cvsignore nvidia-kmod.spec sources
Log Message:
* Tue Jul 31 2012 Leigh Scott <leigh123linux(a)googlemail.com> - 1:304.30-1
- Update to 304.30
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/.cvsignore,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- .cvsignore 13 Jul 2012 16:51:30 -0000 1.45
+++ .cvsignore 31 Jul 2012 17:21:52 -0000 1.46
@@ -1 +1 @@
-nvidia-kmod-data-304.22.tar.xz
+nvidia-kmod-data-304.30.tar.xz
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- nvidia-kmod.spec 13 Jul 2012 16:51:30 -0000 1.99
+++ nvidia-kmod.spec 31 Jul 2012 17:21:52 -0000 1.100
@@ -7,7 +7,7 @@
Name: nvidia-kmod
Epoch: 1
-Version: 304.22
+Version: 304.30
# Taken over by kmodtool
Release: 1%{?dist}
Summary: NVIDIA display driver kernel module
@@ -77,6 +77,9 @@
%changelog
+* Tue Jul 31 2012 Leigh Scott <leigh123linux(a)googlemail.com> - 1:304.30-1
+- Update to 304.30
+
* Fri Jul 13 2012 Leigh Scott <leigh123linux(a)googlemail.com> - 1:304.22-1
- Update to 304.22
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/sources,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- sources 13 Jul 2012 16:51:30 -0000 1.45
+++ sources 31 Jul 2012 17:21:52 -0000 1.46
@@ -1 +1 @@
-b85839cebf610519a1cfd2ccc02edffc nvidia-kmod-data-304.22.tar.xz
+f595716710d0f56366ffd7cd506b6398 nvidia-kmod-data-304.30.tar.xz
12 years, 3 months
rpms/xorg-x11-drv-nvidia/devel .cvsignore, 1.45, 1.46 sources, 1.45, 1.46 xorg-x11-drv-nvidia.spec, 1.79, 1.80
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv8445
Modified Files:
.cvsignore sources xorg-x11-drv-nvidia.spec
Log Message:
* Tue Jul 31 2012 Leigh Scott <leigh123linux(a)googlemail.com> - 1:304.30-1
- Update to 304.30
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/.cvsignore,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- .cvsignore 13 Jul 2012 16:44:11 -0000 1.45
+++ .cvsignore 31 Jul 2012 17:18:03 -0000 1.46
@@ -1,2 +1,2 @@
-NVIDIA-Linux-x86-304.22.run
-NVIDIA-Linux-x86_64-304.22.run
+NVIDIA-Linux-x86-304.30.run
+NVIDIA-Linux-x86_64-304.30.run
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/sources,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- sources 13 Jul 2012 16:44:11 -0000 1.45
+++ sources 31 Jul 2012 17:18:03 -0000 1.46
@@ -1,2 +1,2 @@
-4263d20f6cdbebe9c3ec0f05a7bb3e9f NVIDIA-Linux-x86-304.22.run
-2f00034ead4e17be9b123348ffafaf2d NVIDIA-Linux-x86_64-304.22.run
+2fb7a7e00404145a842d32b691ea94b6 NVIDIA-Linux-x86-304.30.run
+6080d3c32a86c4c5d25071406cd3d8ba NVIDIA-Linux-x86_64-304.30.run
Index: xorg-x11-drv-nvidia.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/xorg-x11-drv-nvidia.spec,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- xorg-x11-drv-nvidia.spec 13 Jul 2012 23:29:37 -0000 1.79
+++ xorg-x11-drv-nvidia.spec 31 Jul 2012 17:18:03 -0000 1.80
@@ -6,8 +6,8 @@
Name: xorg-x11-drv-nvidia
Epoch: 1
-Version: 304.22
-Release: 2%{?dist}
+Version: 304.30
+Release: 1%{?dist}
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
Group: User Interface/X Hardware Support
@@ -352,9 +352,13 @@
%{nvidialibdir}/libXvMCNVIDIA.so
%{nvidialibdir}/libnvcuvid.so
%{nvidialibdir}/libnvidia-ml.so
+%{nvidialibdir}/libnvidia-opencl.so
%changelog
+* Tue Jul 31 2012 Leigh Scott <leigh123linux(a)googlemail.com> - 1:304.30-1
+- Update to 304.30
+
* Sat Jul 14 2012 Leigh Scott <leigh123linux(a)googlemail.com> - 1:304.22-2
- Add nvidia-cuda-proxy binaries and man file
12 years, 3 months
rpms/xtables-addons/devel .cvsignore, 1.6, 1.7 sources, 1.7, 1.8 xtables-addons.spec, 1.12, 1.13
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24076/devel
Modified Files:
.cvsignore sources xtables-addons.spec
Log Message:
Update to 1.45
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/xtables-addons/devel/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 12 Apr 2012 21:31:39 -0000 1.6
+++ .cvsignore 31 Jul 2012 09:01:40 -0000 1.7
@@ -1 +1 @@
-xtables-addons-1.42.tar.xz
+xtables-addons-1.45.tar.xz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/xtables-addons/devel/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources 12 Apr 2012 21:31:39 -0000 1.7
+++ sources 31 Jul 2012 09:01:40 -0000 1.8
@@ -1 +1 @@
-7c996a0400667b57ab4fb53a013ae742 xtables-addons-1.42.tar.xz
+802d2f556a5e545f44e4b69937bf8490 xtables-addons-1.45.tar.xz
Index: xtables-addons.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons/devel/xtables-addons.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- xtables-addons.spec 14 Jun 2012 09:28:33 -0000 1.12
+++ xtables-addons.spec 31 Jul 2012 09:01:40 -0000 1.13
@@ -1,7 +1,7 @@
Name: xtables-addons
Summary: Extensions targets and matches for iptables
-Version: 1.42
-Release: 3%{?dist}
+Version: 1.45
+Release: 1%{?dist}
# The entire source code is GPLv2 except ACCOUNT/libxt_ACCOUNT_cl.* which is LGPLv2
License: GPLv2 and LGPLv2
Group: System Environment/Base
@@ -18,7 +18,7 @@
# This is for /sbin/service
Requires(preun): initscripts
Requires(postun): initscripts
-Requires: ipset >= 6.11
+Requires: ipset >= 6.13
Obsoletes: %{name}-devel < 1.27-1
%description
@@ -91,6 +91,9 @@
%{_mandir}/man?/*
%changelog
+* Tue Jul 31 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.45-1
+- Update to 1.45
+
* Thu Jun 14 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.42-3
- Fix ipset path in F-16 and later
12 years, 3 months
rpms/xtables-addons-kmod/devel sources, 1.7, 1.8 .cvsignore, 1.6, 1.7 xtables-addons-kmod.spec, 1.23, 1.24
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv22549
Modified Files:
sources .cvsignore xtables-addons-kmod.spec
Log Message:
Update to 1.45
Index: sources
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/devel/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources 12 Apr 2012 21:29:14 -0000 1.7
+++ sources 31 Jul 2012 08:45:16 -0000 1.8
@@ -1 +1 @@
-7c996a0400667b57ab4fb53a013ae742 xtables-addons-1.42.tar.xz
+802d2f556a5e545f44e4b69937bf8490 xtables-addons-1.45.tar.xz
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/devel/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 12 Apr 2012 21:29:14 -0000 1.6
+++ .cvsignore 31 Jul 2012 08:45:16 -0000 1.7
@@ -1 +1 @@
-xtables-addons-1.42.tar.xz
+xtables-addons-1.45.tar.xz
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/devel/xtables-addons-kmod.spec,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- xtables-addons-kmod.spec 3 May 2012 21:32:55 -0000 1.23
+++ xtables-addons-kmod.spec 31 Jul 2012 08:45:16 -0000 1.24
@@ -7,8 +7,8 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
-Version: 1.42
-Release: 2%{?dist}
+Version: 1.45
+Release: 1%{?dist}
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -66,6 +66,9 @@
rm -rf %{buildroot}
%changelog
+* Tue Jul 31 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.45-1
+- Update to 1.47
+
* Thu May 03 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.42-2
- Fix build
12 years, 3 months
rpms/wl-kmod/F-17 wl-kmod.spec,1.80,1.81
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv8317
Modified Files:
wl-kmod.spec
Log Message:
* Tue Jul 31 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-3.8
- Rebuilt for updated kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-17/wl-kmod.spec,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- wl-kmod.spec 21 Jul 2012 12:47:31 -0000 1.80
+++ wl-kmod.spec 31 Jul 2012 06:37:03 -0000 1.81
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 5.100.82.112
-Release: 3%{?dist}.7
+Release: 3%{?dist}.8
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -85,6 +85,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Tue Jul 31 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-3.8
+- Rebuilt for updated kernel
+
* Sat Jul 21 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-3.7
- Rebuilt for updated kernel
12 years, 3 months
rpms/nvidia-kmod/F-17 nvidia-kmod.spec,1.121,1.122
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv8182
Modified Files:
nvidia-kmod.spec
Log Message:
* Tue Jul 31 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.59-1.7
- Rebuilt for updated kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-17/nvidia-kmod.spec,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- nvidia-kmod.spec 21 Jul 2012 12:47:24 -0000 1.121
+++ nvidia-kmod.spec 31 Jul 2012 06:36:56 -0000 1.122
@@ -9,7 +9,7 @@
Epoch: 1
Version: 295.59
# Taken over by kmodtool
-Release: 1%{?dist}.6
+Release: 1%{?dist}.7
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -77,6 +77,9 @@
%changelog
+* Tue Jul 31 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.59-1.7
+- Rebuilt for updated kernel
+
* Sat Jul 21 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.59-1.6
- Rebuilt for updated kernel
12 years, 3 months