summaryrefslogtreecommitdiffstats
path: root/package/acx
diff options
context:
space:
mode:
authorhauke <hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-07-11 19:00:23 +0000
committerhauke <hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-07-11 19:00:23 +0000
commit0fac63b557411da51be201b7e60c78828b33866a (patch)
tree914b42010de28d6c90748570183e75e6606261f9 /package/acx
parent023534e4cfb200baf2d15f7b6cae35d8d6bede16 (diff)
kernel: fix build problems with recent kernel versions
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22137 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/acx')
-rw-r--r--package/acx/patches/007-2.6.33_fixes.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/package/acx/patches/007-2.6.33_fixes.patch b/package/acx/patches/007-2.6.33_fixes.patch
new file mode 100644
index 000000000..338b1c66f
--- /dev/null
+++ b/package/acx/patches/007-2.6.33_fixes.patch
@@ -0,0 +1,15 @@
+--- a/pci.c
++++ b/pci.c
+@@ -35,8 +35,12 @@
+
+ /* Linux 2.6.18+ uses <linux/utsrelease.h> */
+ #ifndef UTS_RELEASE
++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33))
++#include <generated/utsrelease.h>
++#else
+ #include <linux/utsrelease.h>
+ #endif
++#endif
+
+ #include <linux/compiler.h> /* required for Lx 2.6.8 ?? */
+ #include <linux/kernel.h>