summaryrefslogtreecommitdiffstats
path: root/abs/core/nvidia-96xx/nvidia-96.43.11-2.6.30.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-12-01 18:26:09 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-12-01 18:26:22 (GMT)
commite2c33b0fae1fa4af8bbbfc917eb8e13a3ac0cb37 (patch)
treebee3fe89f2988dd244e11791755e129aa8c03b14 /abs/core/nvidia-96xx/nvidia-96.43.11-2.6.30.patch
parent8132c218cfc1f1acb1c6d12154e0d4ca075e77f2 (diff)
downloadlinhes_pkgbuild-e2c33b0fae1fa4af8bbbfc917eb8e13a3ac0cb37.zip
linhes_pkgbuild-e2c33b0fae1fa4af8bbbfc917eb8e13a3ac0cb37.tar.gz
linhes_pkgbuild-e2c33b0fae1fa4af8bbbfc917eb8e13a3ac0cb37.tar.bz2
Mass move of uncompiled packages to abs_not_built.
The will sit here for a bit, and then will be removed completely if no one claims them.
Diffstat (limited to 'abs/core/nvidia-96xx/nvidia-96.43.11-2.6.30.patch')
-rw-r--r--abs/core/nvidia-96xx/nvidia-96.43.11-2.6.30.patch103
1 files changed, 0 insertions, 103 deletions
diff --git a/abs/core/nvidia-96xx/nvidia-96.43.11-2.6.30.patch b/abs/core/nvidia-96xx/nvidia-96.43.11-2.6.30.patch
deleted file mode 100644
index 44d44fd..0000000
--- a/abs/core/nvidia-96xx/nvidia-96.43.11-2.6.30.patch
+++ /dev/null
@@ -1,103 +0,0 @@
---- usr/src/nv/nv.c.orig
-+++ usr/src/nv/nv.c
-@@ -15,6 +15,7 @@
- #include "nv_compiler.h"
- #include "os-agp.h"
- #include "nv-vm.h"
-+#include <linux/version.h>
-
- #ifdef MODULE_ALIAS_CHARDEV_MAJOR
- MODULE_ALIAS_CHARDEV_MAJOR(NV_MAJOR_DEVICE_NUMBER);
-@@ -499,10 +500,12 @@
- * Set the module owner to ensure that the reference
- * count reflects accesses to the proc files.
- */
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
- proc_nvidia->owner = THIS_MODULE;
- proc_nvidia_cards->owner = THIS_MODULE;
- proc_nvidia_warnings->owner = THIS_MODULE;
-
-+#endif
- for (j = 0; j < num_nv_devices; j++)
- {
- nvl = &nv_linux_devices[j];
-@@ -521,7 +524,9 @@
-
- entry->data = nv;
- entry->read_proc = nv_kern_read_cardinfo;
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
- entry->owner = THIS_MODULE;
-+#endif
-
- if (nvos_find_agp_capability(dev)) {
- /*
-@@ -534,7 +539,9 @@
- goto failed;
- }
-
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
- entry->owner = THIS_MODULE;
-+#endif
- proc_nvidia_agp = entry;
-
- entry = create_proc_entry("status", flags, proc_nvidia_agp);
-@@ -545,7 +552,9 @@
-
- entry->data = nv;
- entry->read_proc = nv_kern_read_status;
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
- entry->owner = THIS_MODULE;
-+#endif
-
- entry = create_proc_entry("host-bridge", flags, proc_nvidia_agp);
- if (!entry) {
-@@ -555,8 +564,9 @@
-
- entry->data = NULL;
- entry->read_proc = nv_kern_read_agpinfo;
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
- entry->owner = THIS_MODULE;
--
-+#endif
- entry = create_proc_entry("card", flags, proc_nvidia_agp);
- if (!entry) {
- NV_PCI_DEV_PUT(dev);
-@@ -565,7 +575,9 @@
-
- entry->data = nv;
- entry->read_proc = nv_kern_read_agpinfo;
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
- entry->owner = THIS_MODULE;
-+#endif
- }
-
- NV_PCI_DEV_PUT(dev);
-@@ -576,14 +588,18 @@
- goto failed;
-
- entry->read_proc = nv_kern_read_version;
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
- entry->owner = THIS_MODULE;
-+#endif
-
- entry = create_proc_entry("registry", flags, proc_nvidia);
- if (!entry)
- goto failed;
-
- entry->read_proc = nv_kern_read_registry;
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
- entry->owner = THIS_MODULE;
-+#endif
-
- return;
-
-@@ -610,7 +626,9 @@
-
- entry->data = (void *)message;
- entry->read_proc = nv_kern_read_warning;
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,30)
- entry->owner = THIS_MODULE;
-+#endif
- #endif
- }
-