rpms/catalyst-legacy-kmod/F-18 3.11_kernel.patch,NONE,1.1
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv32195
Added Files:
3.11_kernel.patch
Log Message:
* Fri Nov 15 2013 Leigh Scott - 13.1-3.34
- Patch for 3.11 kernel
3.11_kernel.patch:
drm_proc.h | 15 +++++++
firegl_public.c | 113 ++++++++++++++++++++++++++++++++++++++++++++++++++++----
kcl_acpi.c | 8 ++-
make.sh | 18 +++++++-
4 files changed, 141 insertions(+), 13 deletions(-)
--- NEW FILE 3.11_kernel.patch ---
diff -uNrp lib/modules/fglrx/build_mod/drm_proc.h lib/modules/fglrx/build_mod/drm_proc.h
--- lib/modules/fglrx/build_mod/drm_proc.h
+++ lib/modules/fglrx/build_mod/drm_proc.h
@@ -95,22 +95,35 @@ struct proc_dir_entry *DRM(proc_init)(dr
int i, j;
char name[64];
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
if (!minor) root = create_proc_entry("dri", S_IFDIR, NULL);
+#else
+ if (!minor) root = proc_mkdir("dri", NULL);
+#endif
if (!root) {
DRM_ERROR("Cannot create /proc/ati\n");
return NULL;
}
sprintf(name, "%d", minor);
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
*dev_root = create_proc_entry(name, S_IFDIR, root);
+#else
+ *dev_root = proc_mkdir(name, root);
+#endif
if (!*dev_root) {
DRM_ERROR("Cannot create /proc/ati/%s\n", name);
return NULL;
}
for (i = 0; i < DRM_PROC_ENTRIES; i++) {
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
ent = create_proc_entry(DRM(proc_list)[i].name,
S_IFREG|S_IRUGO, *dev_root);
+#else
+ ent = proc_create_data(DRM(proc_list)[i].name,
+ S_IFREG|S_IRUGO, *dev_root, &firegl_fops, dev);
+#endif
if (!ent) {
DRM_ERROR("Cannot create /proc/ati/%s/%s\n",
name, DRM(proc_list)[i].name);
@@ -121,8 +134,10 @@ struct proc_dir_entry *DRM(proc_init)(dr
if (!minor) remove_proc_entry("dri", NULL);
return NULL;
}
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
ent->read_proc = DRM(proc_list)[i].f;
ent->data = dev;
+#endif
}
return root;
diff -uNrp lib/modules/fglrx/build_mod/firegl_public.c lib/modules/fglrx/build_mod/firegl_public.c
--- lib/modules/fglrx/build_mod/firegl_public.c
+++ lib/modules/fglrx/build_mod/firegl_public.c
@@ -16,6 +16,10 @@
#ifdef __KERNEL__
+#ifndef VM_RESERVED
+#define VM_RESERVED (VM_DONTEXPAND | VM_DONTDUMP)
+#endif
+
#ifndef MODULE
!!! This is not currently supported,
!!! since it requires changes to linux/init/main.c.
@@ -196,6 +200,10 @@
#include "kcl_io.h"
#include "kcl_debug.h"
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0)
+#include <linux/seq_file.h>
+#endif
+
// ============================================================
// VM_SHM is deleted in 2.6.18 or higher kernels.
@@ -222,6 +230,11 @@
#define preempt_enable()
#endif
+// VM_RESERVED is removed from 3.7.0
+#ifndef VM_RESERVED
+#define VM_RESERVED VM_DONTEXPAND | VM_DONTDUMP
+#endif
+
// ============================================================
/* globals */
@@ -250,7 +263,13 @@ module_param(firegl, charp, 0);
#endif
#ifdef MODULE_LICENSE
+
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,12,0)
MODULE_LICENSE("Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY");
+#else
+MODULE_LICENSE("GPL\0Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY");
+#endif
+
#endif
#ifdef MODULE_DEVICE_TABLE
MODULE_DEVICE_TABLE(pci, fglrx_pci_table);
@@ -508,16 +527,26 @@ READ_PROC_WRAP(firegl_lock_info)
#ifdef DEBUG
READ_PROC_WRAP(drm_bq_info)
#endif
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
READ_PROC_WRAP(firegl_debug_proc_read)
+#endif
READ_PROC_WRAP(firegl_bios_version)
READ_PROC_WRAP(firegl_interrupt_info)
READ_PROC_WRAP(firegl_ptm_info)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
static int firegl_debug_proc_write_wrap(void* file, const char *buffer, unsigned long count, void *data)
-{
- return firegl_debug_proc_write(file, buffer, count, data);
+#else
+static int firegl_debug_proc_read_wrap(struct seq_file *m, void* data)
+{
+ return firegl_debug_proc_read(m->buf, m->from, m->index, m->size, m->size - m->count, data);
}
+static ssize_t firegl_debug_proc_write_wrap(struct file *file, const char *buffer, size_t count, void *data)
+#endif
+{
+ return firegl_debug_proc_write(file, buffer, count, data);
+}
/** \brief Callback function for reading from /proc/ati/major
*
* Returns the major device number in the outupt buffer in decimal.
@@ -531,9 +560,14 @@ static int firegl_debug_proc_write_wrap(
*
* \return number of bytes written
*/
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
static int firegl_major_proc_read(char *buf, char **start, kcl_off_t offset,
int request, int* eof, void* data)
+#else
+static int firegl_major_proc_read(struct seq_file *m, void* data)
+#endif
{
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
int len = 0; // For ProcFS: fill buf from the beginning
KCL_DEBUG1(FN_FIREGL_PROC, "offset %d\n", (int)offset);
@@ -548,7 +582,9 @@ static int firegl_major_proc_read(char *
*eof = 1;
len = snprintf(buf, request, "%d\n", major);
-
+#else
+ int len = seq_printf(m, "%d\n", major);
+#endif
KCL_DEBUG1(FN_FIREGL_PROC, "return len=%i\n",len);
return len;
@@ -571,6 +607,29 @@ kcl_proc_list_t KCL_PROC_FileList[] =
{ "NULL", NULL, NULL} // Terminate List!!!
};
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0)
+static int firegl_major_proc_open(struct inode *inode, struct file *file){
+ return single_open(file, firegl_major_proc_read, NULL);
+}
+
+static const struct file_operations firegl_major_fops = {
+ .open = firegl_major_proc_open,
+ .read = seq_read,
+ .llseek = seq_lseek,
+};
+
+static int firegl_debug_proc_open(struct inode *inode, struct file *file){
+ return single_open(file, firegl_debug_proc_read_wrap, NULL);
+}
+
+static const struct file_operations firegl_debug_fops = {
+ .open = firegl_debug_proc_open,
+ .write = firegl_debug_proc_write_wrap,
+ .read = seq_read,
+ .llseek = seq_lseek,
+};
+#endif
+
static struct proc_dir_entry *firegl_proc_init( device_t *dev,
int minor,
struct proc_dir_entry *root,
@@ -583,7 +642,11 @@ static struct proc_dir_entry *firegl_pro
KCL_DEBUG1(FN_FIREGL_PROC, "minor %d, proc_list 0x%08lx\n", minor, (unsigned long)proc_list);
if (!minor)
{
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
root = create_proc_entry("ati", S_IFDIR, NULL);
+#else
+ root = proc_mkdir("ati", NULL);
+#endif
}
if (!root)
@@ -595,18 +658,28 @@ static struct proc_dir_entry *firegl_pro
if (minor == 0)
{
// Global major debice number entry
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
ent = create_proc_entry("major", S_IFREG|S_IRUGO, root);
+#else
+ ent = proc_create("major", S_IFREG|S_IRUGO, root, &firegl_major_fops);
+#endif
if (!ent)
{
remove_proc_entry("ati", NULL);
KCL_DEBUG_ERROR("Cannot create /proc/ati/major\n");
return NULL;
}
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
ent->read_proc = (read_proc_t*)firegl_major_proc_read;
+#endif
}
sprintf(name, "%d", minor);
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
*dev_root = create_proc_entry(name, S_IFDIR, root);
+#else
+ *dev_root = proc_mkdir(name, root);
+#endif
if (!*dev_root) {
remove_proc_entry("major", root);
remove_proc_entry("ati", NULL);
@@ -616,7 +689,12 @@ static struct proc_dir_entry *firegl_pro
while (list->f || list->fops)
{
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
ent = create_proc_entry(list->name, S_IFREG|S_IRUGO, *dev_root);
+#else
+ ent = proc_create_data(list->name, S_IFREG|S_IRUGO, *dev_root, &firegl_fops,
+ (dev->pubdev.signature == FGL_DEVICE_SIGNATURE)? firegl_find_device(minor) : (dev));
+#endif
if (!ent)
{
KCL_DEBUG_ERROR("Cannot create /proc/ati/%s/%s\n", name, list->name);
@@ -634,6 +712,7 @@ static struct proc_dir_entry *firegl_pro
return NULL;
}
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
if (list->f)
{
ent->read_proc = (read_proc_t*)list->f;
@@ -647,19 +726,25 @@ static struct proc_dir_entry *firegl_pro
{
ent->data = (dev->pubdev.signature == FGL_DEVICE_SIGNATURE)? firegl_find_device(minor) : (dev);
}
-
+#endif
list++;
}
if (minor == 0)
{
// Global debug entry, only create it once
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
ent = create_proc_entry("debug", S_IFREG|S_IRUGO, root);
+#else
+ ent = proc_create_data("debug", S_IFREG|S_IRUGO, root, &firegl_debug_fops, dev);
+#endif
if (ent)
{
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,10,0)
ent->read_proc = (read_proc_t*)firegl_debug_proc_read_wrap;
ent->write_proc = (write_proc_t*)firegl_debug_proc_write_wrap;
ent->data = dev;
+#endif
}
}
@@ -2147,10 +2232,13 @@ unsigned long ATI_API_CALL KCL_MEM_Alloc
flags = MAP_SHARED;
prot = PROT_READ|PROT_WRITE;
-
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,5,0)
+ vaddr = (void *) vm_mmap(file, 0, len, prot, flags, pgoff);
+#else
down_write(¤t->mm->mmap_sem);
vaddr = (void *) do_mmap(file, 0, len, prot, flags, pgoff);
up_write(¤t->mm->mmap_sem);
+#endif
if (IS_ERR(vaddr))
return 0;
else
@@ -2161,7 +2249,17 @@ int ATI_API_CALL KCL_MEM_ReleaseLinearAd
{
int retcode = 0;
- down_write(¤t->mm->mmap_sem);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,5,0)
+#ifdef FGL_LINUX_RHEL_MUNMAP_API
+ retcode = vm_munmap(addr,
+ len,
+ 1);
+#else
+ retcode = vm_munmap(addr,
+ len);
+#endif
+#else
+ down_write(¤t->mm->mmap_sem);
#ifdef FGL_LINUX_RHEL_MUNMAP_API
retcode = do_munmap(current->mm,
addr,
@@ -2171,8 +2269,9 @@ int ATI_API_CALL KCL_MEM_ReleaseLinearAd
retcode = do_munmap(current->mm,
addr,
len);
-#endif
up_write(¤t->mm->mmap_sem);
+#endif
+#endif
return retcode;
}
diff -uNrp lib/modules/fglrx/build_mod/kcl_acpi.c lib/modules/fglrx/build_mod/kcl_acpi.c
--- lib/modules/fglrx/build_mod/kcl_acpi.c
+++ lib/modules/fglrx/build_mod/kcl_acpi.c
@@ -775,11 +775,13 @@ static unsigned int KCL_ACPI_SearchHandl
unsigned int ATI_API_CALL KCL_ACPI_GetHandles(kcl_match_info_t *pInfo)
{
#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,12)
- #if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,19)
+ #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
+ pInfo->video_handle = pInfo->pcidev->dev.acpi_node.handle;
+ #elif LINUX_VERSION_CODE > KERNEL_VERSION(2,6,19)
pInfo->video_handle = pInfo->pcidev->dev.archdata.acpi_handle;
- #else
+ #else
pInfo->video_handle = pInfo->pcidev->dev.firmware_data;
- #endif
+ #endif
if ( pInfo->video_handle &&
(KCL_ACPI_videoDevice(pInfo->video_handle) != KCL_ACPI_OK) )
{
diff -uNrp lib/modules/fglrx/build_mod/make.sh lib/modules/fglrx/build_mod/make.sh
--- lib/modules/fglrx/build_mod/make.sh
+++ lib/modules/fglrx/build_mod/make.sh
@@ -202,11 +202,23 @@ cd $current_wd
# verify match with respective line in linux/version.h
# sample: #define UTS_RELEASE "2.4.0-test7"
-src_file=$linuxincludes/linux/version.h
+# Before kernel 3.7.0 version.h is normally located at linux/version.h
+# For 3.7.0 and later version.h is in generated/uapi/linux/version.h
-if [ ! -e $src_file ]; then
+headerexist=0
+
+for src_file in \
+ "$linuxincludes/linux/version.h" \
+ "$linuxincludes/generated/uapi/linux/version.h";
+do
+if [ -e $src_file ]; then
+ headerexist=1
+ break
+fi
+done
+
+if [ $headerexist -eq 0 ]; then
echo "kernel includes at $linuxincludes not found or incomplete" | tee -a $logfile
- echo "file: $src_file" | tee -a $logfile
exit 1
fi
11 years
rpms/catalyst-legacy-kmod/F-18 catalyst-legacy-kmod.spec, 1.42, 1.43 3.5-do_mmap.patch, 1.1, NONE 3.7_kernel.patch, 1.1, NONE 3.8_kernel.patch, 1.1, NONE
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv31955
Modified Files:
catalyst-legacy-kmod.spec
Removed Files:
3.5-do_mmap.patch 3.7_kernel.patch 3.8_kernel.patch
Log Message:
* Fri Nov 15 2013 Leigh Scott - 13.1-3.34
- Patch for 3.11 kernel
Index: catalyst-legacy-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18/catalyst-legacy-kmod.spec,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- catalyst-legacy-kmod.spec 14 Nov 2013 11:29:13 -0000 1.42
+++ catalyst-legacy-kmod.spec 15 Nov 2013 13:08:40 -0000 1.43
@@ -3,7 +3,7 @@
# "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
# Tweak to have debuginfo - part 1/2
%if 0%{?fedora} > 7
@@ -13,7 +13,7 @@
Name: catalyst-legacy-kmod
Version: 13.1
-Release: 2%{?dist}.34
+Release: 3%{?dist}
# Taken over by kmodtool
Summary: AMD display legacy driver kernel module
Group: System Environment/Kernel
@@ -22,9 +22,7 @@
Source0: http://www.linux-ati-drivers.homecall.co.uk/catalyst-legacy-kmod-data-%{v...
Source11: catalyst-kmodtool-excludekernel-filterfile
Patch0: compat_alloc-Makefile.patch
-Patch1: 3.5-do_mmap.patch
-Patch2: 3.7_kernel.patch
-Patch3: 3.8_kernel.patch
+Patch1: 3.11_kernel.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# needed for plague to make sure it builds for i686
@@ -70,9 +68,7 @@
pushd fglrxpkg
%patch0 -p0 -b.compat_alloc
-%patch1 -p0 -b.3.5-do_mmap
-%patch2 -p0 -b.3.7_kernel
-%patch3 -p0 -b.3.8_kernel
+%patch1 -p0 -b.3.11_kernel
popd
for kernel_version in %{?kernel_versions} ; do
@@ -103,6 +99,9 @@
%changelog
+* Fri Nov 15 2013 Leigh Scott - 13.1-3.34
+- Patch for 3.11 kernel
+
* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.34
- Rebuilt for kernel
--- 3.5-do_mmap.patch DELETED ---
--- 3.7_kernel.patch DELETED ---
--- 3.8_kernel.patch DELETED ---
11 years
rpms/vlc/devel sources, 1.65, 1.66 .cvsignore, 1.55, 1.56 vlc.spec, 1.192, 1.193
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv6131
Modified Files:
sources .cvsignore vlc.spec
Log Message:
Update to 2.1.1
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/sources,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- sources 1 Oct 2013 16:45:19 -0000 1.65
+++ sources 14 Nov 2013 12:11:51 -0000 1.66
@@ -1 +1 @@
-8c77bda671821f5b9ede96b6816e2ade vlc-2.1.0.tar.xz
+1331cd853d56762c96afcb92dd498348 vlc-2.1.1.tar.xz
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/.cvsignore,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- .cvsignore 1 Oct 2013 16:45:19 -0000 1.55
+++ .cvsignore 14 Nov 2013 12:11:51 -0000 1.56
@@ -1 +1 @@
-vlc-2.1.0.tar.xz
+vlc-2.1.1.tar.xz
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/vlc.spec,v
retrieving revision 1.192
retrieving revision 1.193
diff -u -r1.192 -r1.193
--- vlc.spec 5 Nov 2013 20:09:03 -0000 1.192
+++ vlc.spec 14 Nov 2013 12:11:51 -0000 1.193
@@ -29,8 +29,8 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
-Version: 2.1.0
-Release: 3%{?dist}
+Version: 2.1.1
+Release: 1%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -488,6 +488,9 @@
%changelog
+* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.1.1-1
+- Update to 2.1.1
+
* Tue Nov 05 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.1.0-3
- Rebuilt for x264/FFmpeg
11 years
rpms/wl-kmod/F-18 wl-kmod.spec,1.125,1.126
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv4719
Modified Files:
wl-kmod.spec
Log Message:
* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-1.8
- Rebuilt for kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-18/wl-kmod.spec,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- wl-kmod.spec 4 Nov 2013 23:21:43 -0000 1.125
+++ wl-kmod.spec 14 Nov 2013 11:29:48 -0000 1.126
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 6.30.223.141
-Release: 1%{?dist}.7
+Release: 1%{?dist}.8
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -90,6 +90,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-1.8
+- Rebuilt for kernel
+
* Mon Nov 04 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-1.7
- Rebuilt for kernel
11 years
rpms/nvidia-kmod/F-18 nvidia-kmod.spec,1.174,1.175
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv4585
Modified Files:
nvidia-kmod.spec
Log Message:
* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:319.60-3.1
- Rebuilt for kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-18/nvidia-kmod.spec,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- nvidia-kmod.spec 6 Nov 2013 10:31:12 -0000 1.174
+++ nvidia-kmod.spec 14 Nov 2013 11:29:39 -0000 1.175
@@ -3,13 +3,13 @@
# "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 current
+%global buildforkernels newest
Name: nvidia-kmod
Epoch: 1
Version: 319.60
# Taken over by kmodtool
-Release: 3%{?dist}
+Release: 3%{?dist}.1
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -79,6 +79,9 @@
%changelog
+* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:319.60-3.1
+- Rebuilt for kernel
+
* Wed Nov 06 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 1:319.60-3
- use nvidia fix for get_num_physpages
11 years
rpms/nvidia-304xx-kmod/F-18 nvidia-304xx-kmod.spec,1.23,1.24
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3961
Modified Files:
nvidia-304xx-kmod.spec
Log Message:
* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 304.88-4.1
- Rebuilt for kernel
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/F-18/nvidia-304xx-kmod.spec,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- nvidia-304xx-kmod.spec 6 Nov 2013 11:05:39 -0000 1.23
+++ nvidia-304xx-kmod.spec 14 Nov 2013 11:29:31 -0000 1.24
@@ -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 current
+%global buildforkernels newest
Name: nvidia-304xx-kmod
Version: 304.88
# Taken over by kmodtool
-Release: 4%{?dist}
+Release: 4%{?dist}.1
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -80,6 +80,9 @@
%changelog
+* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 304.88-4.1
+- Rebuilt for kernel
+
* Wed Nov 06 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.88-4
- use nvidia fix for get_num_physpages
11 years
rpms/nvidia-173xx-kmod/F-18 nvidia-173xx-kmod.spec,1.106,1.107
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3661
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.37-4.5
- Rebuilt for kernel
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-18/nvidia-173xx-kmod.spec,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- nvidia-173xx-kmod.spec 4 Nov 2013 23:21:13 -0000 1.106
+++ nvidia-173xx-kmod.spec 14 Nov 2013 11:29:22 -0000 1.107
@@ -8,7 +8,7 @@
Name: nvidia-173xx-kmod
Version: 173.14.37
# Taken over by kmodtool
-Release: 4%{?dist}.4
+Release: 4%{?dist}.5
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -90,6 +90,9 @@
%changelog
+* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.37-4.5
+- Rebuilt for kernel
+
* Mon Nov 04 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.37-4.4
- Rebuilt for kernel
11 years
rpms/catalyst-legacy-kmod/F-18 catalyst-legacy-kmod.spec,1.41,1.42
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3539
Modified Files:
catalyst-legacy-kmod.spec
Log Message:
* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.34
- Rebuilt for kernel
Index: catalyst-legacy-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18/catalyst-legacy-kmod.spec,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- catalyst-legacy-kmod.spec 4 Nov 2013 23:21:04 -0000 1.41
+++ catalyst-legacy-kmod.spec 14 Nov 2013 11:29:13 -0000 1.42
@@ -13,7 +13,7 @@
Name: catalyst-legacy-kmod
Version: 13.1
-Release: 2%{?dist}.33
+Release: 2%{?dist}.34
# Taken over by kmodtool
Summary: AMD display legacy driver kernel module
Group: System Environment/Kernel
@@ -103,6 +103,9 @@
%changelog
+* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.34
+- Rebuilt for kernel
+
* Mon Nov 04 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.33
- Rebuilt for kernel
11 years
rpms/catalyst-kmod/F-18 catalyst-kmod.spec,1.77,1.78
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3413
Modified Files:
catalyst-kmod.spec
Log Message:
* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.9-1.5
- Rebuilt for kernel
Index: catalyst-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-kmod/F-18/catalyst-kmod.spec,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- catalyst-kmod.spec 4 Nov 2013 23:20:53 -0000 1.77
+++ catalyst-kmod.spec 14 Nov 2013 11:29:04 -0000 1.78
@@ -13,7 +13,7 @@
Name: catalyst-kmod
Version: 13.9
-Release: 1%{?dist}.4
+Release: 1%{?dist}.5
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -99,6 +99,9 @@
%changelog
+* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.9-1.5
+- Rebuilt for kernel
+
* Mon Nov 04 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.9-1.4
- Rebuilt for kernel
11 years
rpms/xtables-addons-kmod/F-18 xtables-addons-kmod.spec,1.81,1.82
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3287
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.3-1.13
- Rebuilt for kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/F-18/xtables-addons-kmod.spec,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- xtables-addons-kmod.spec 4 Nov 2013 23:20:45 -0000 1.81
+++ xtables-addons-kmod.spec 14 Nov 2013 11:28:57 -0000 1.82
@@ -8,7 +8,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 2.3
-Release: 1%{?dist}.12
+Release: 1%{?dist}.13
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -66,6 +66,9 @@
rm -rf %{buildroot}
%changelog
+* Thu Nov 14 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.3-1.13
+- Rebuilt for kernel
+
* Mon Nov 04 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.3-1.12
- Rebuilt for kernel
11 years