summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorMischa Jonker <mischa.jonker@synopsys.com>2013-07-10 11:25:51 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2013-07-10 11:49:14 +0200
commitcca5538556e854516a85b28ae56c06ed66427b71 (patch)
tree1ad6aaddbd788ba804e14ff31c0de701a1c2c748 /package
parentf1f97b3a0587df7a44249ccf3e47c6d0d3087fa0 (diff)
downloadbuildroot-novena-cca5538556e854516a85b28ae56c06ed66427b71.tar.gz
buildroot-novena-cca5538556e854516a85b28ae56c06ed66427b71.zip
uclibc: arc: add patch that adds __kernel_(u)long
This adds a patch that adds the __kernel_long and __kernel_ulong types to uClibc. This fixes the build failure with Linux 3.10 headers. Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r--package/uclibc/0.9.33-arc/uclibc-arc-add-__kernel_long.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/package/uclibc/0.9.33-arc/uclibc-arc-add-__kernel_long.patch b/package/uclibc/0.9.33-arc/uclibc-arc-add-__kernel_long.patch
new file mode 100644
index 000000000..caebac145
--- /dev/null
+++ b/package/uclibc/0.9.33-arc/uclibc-arc-add-__kernel_long.patch
@@ -0,0 +1,29 @@
+From 5164fb28e9205626211d0436933e6eb4960be582 Mon Sep 17 00:00:00 2001
+From: Mischa Jonker <mjonker@synopsys.com>
+Date: Wed, 10 Jul 2013 09:05:25 +0200
+Subject: [PATCH] ARC: libc/sysdeps: add __kernel_long and __kernel_ulong
+
+Linux 3.4 added these two types and updated various exported header
+files to use them. While other architectures were updated before,
+this was not the case for ARC.
+
+This fixes the build failure with Linux 3.10 headers.
+
+Signed-off-by: Mischa Jonker <mjonker@synopsys.com>
+---
+ libc/sysdeps/linux/arc/bits/kernel_types.h | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/libc/sysdeps/linux/arc/bits/kernel_types.h b/libc/sysdeps/linux/arc/bits/kernel_types.h
+index fd52e1c..fc28fa1 100755
+--- a/libc/sysdeps/linux/arc/bits/kernel_types.h
++++ b/libc/sysdeps/linux/arc/bits/kernel_types.h
+@@ -39,6 +39,8 @@ typedef __kernel_uid_t __kernel_old_uid_t;
+ typedef __kernel_gid_t __kernel_old_gid_t;
+ typedef long long __kernel_loff_t;
+ typedef unsigned int __kernel_old_dev_t;
++typedef long __kernel_long_t;
++typedef unsigned long __kernel_ulong_t;
+
+ typedef struct {
+ #ifdef __USE_ALL