summaryrefslogtreecommitdiff
path: root/toolchain/uClibc
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-02-09 16:07:33 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-02-09 16:07:33 +0000
commitd82daa2728d935a7ef57405ad4aa20fbfdce29b3 (patch)
tree391e7394efac2033d0251893c1da0eb63cb69921 /toolchain/uClibc
parentc09a8f00b0cb059faffef3b5714850d4663b275d (diff)
downloadmtk-20170518-d82daa2728d935a7ef57405ad4aa20fbfdce29b3.zip
mtk-20170518-d82daa2728d935a7ef57405ad4aa20fbfdce29b3.tar.gz
mtk-20170518-d82daa2728d935a7ef57405ad4aa20fbfdce29b3.tar.bz2
toolchain/uClibc: use an upstream patch to fix syscall related build errors in 0.9.33
SVN-Revision: 30398
Diffstat (limited to 'toolchain/uClibc')
-rw-r--r--toolchain/uClibc/patches-0.9.33/001-backport-Declare-__err-and-pass-it-to-INTERNAL_SYSCALL_NCS-so.patch28
-rw-r--r--toolchain/uClibc/patches-0.9.33/161-mips-add-INLINE_SYSCALL_NOERR-macro.patch15
2 files changed, 28 insertions, 15 deletions
diff --git a/toolchain/uClibc/patches-0.9.33/001-backport-Declare-__err-and-pass-it-to-INTERNAL_SYSCALL_NCS-so.patch b/toolchain/uClibc/patches-0.9.33/001-backport-Declare-__err-and-pass-it-to-INTERNAL_SYSCALL_NCS-so.patch
new file mode 100644
index 0000000..aefedfb
--- /dev/null
+++ b/toolchain/uClibc/patches-0.9.33/001-backport-Declare-__err-and-pass-it-to-INTERNAL_SYSCALL_NCS-so.patch
@@ -0,0 +1,28 @@
+From 812ae602fe96bb40d1743d410eb1eadb6aa722f5 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 3 Feb 2012 10:57:44 -0800
+Subject: [PATCH] Declare __err and pass it to INTERNAL_SYSCALL_NCS so subsequent macros can use it
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ libc/sysdeps/linux/common/bits/syscalls-common.h | 4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/libc/sysdeps/linux/common/bits/syscalls-common.h b/libc/sysdeps/linux/common/bits/syscalls-common.h
+index faebd1b..0f5a929 100644
+--- a/libc/sysdeps/linux/common/bits/syscalls-common.h
++++ b/libc/sysdeps/linux/common/bits/syscalls-common.h
+@@ -59,8 +59,8 @@
+ #ifndef INLINE_SYSCALL_NOERR_NCS
+ # define INLINE_SYSCALL_NOERR_NCS(name, nr, args...) \
+ ({ \
+- /*INTERNAL_SYSCALL_DECL(__err);*/ \
+- long __res = INTERNAL_SYSCALL_NCS(name, /*__err*/, nr, args); \
++ INTERNAL_SYSCALL_DECL(__err); \
++ long __res = INTERNAL_SYSCALL_NCS(name, __err, nr, args); \
+ __res; \
+ })
+ #endif
+--
+1.7.2.1
+
diff --git a/toolchain/uClibc/patches-0.9.33/161-mips-add-INLINE_SYSCALL_NOERR-macro.patch b/toolchain/uClibc/patches-0.9.33/161-mips-add-INLINE_SYSCALL_NOERR-macro.patch
deleted file mode 100644
index 0cf3678..0000000
--- a/toolchain/uClibc/patches-0.9.33/161-mips-add-INLINE_SYSCALL_NOERR-macro.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/libc/sysdeps/linux/mips/bits/syscalls.h
-+++ b/libc/sysdeps/linux/mips/bits/syscalls.h
-@@ -29,6 +29,12 @@
- } \
- result_var; })
-
-+#define INLINE_SYSCALL_NOERR(name, nr, args...) \
-+ ({ INTERNAL_SYSCALL_DECL(err); \
-+ long result_var = INTERNAL_SYSCALL(name, err, nr, args); \
-+ if (err) do { } while (0); \
-+ result_var; })
-+
- #define INTERNAL_SYSCALL_DECL(err) long err
-
- #define INTERNAL_SYSCALL_ERROR_P(val, err) ((long) (err))