parent
d98c2d542c
commit
3ea4b6ba91
40 changed files with 4 additions and 59 deletions
|
@ -8,7 +8,7 @@ choice
|
|||
Select the version of uClibc you wish to use.
|
||||
|
||||
config UCLIBC_VERSION_0_9_33
|
||||
bool "uClibc 0.9.33"
|
||||
bool "uClibc 0.9.33.2"
|
||||
|
||||
endchoice
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
config UCLIBC_VERSION
|
||||
string
|
||||
depends on USE_UCLIBC
|
||||
default "0.9.33" if UCLIBC_VERSION_0_9_33
|
||||
default "0.9.33"
|
||||
default "0.9.33.2" if UCLIBC_VERSION_0_9_33
|
||||
default "0.9.33.2"
|
||||
|
||||
if !TOOLCHAINOPTS
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ LIBC_SO_VERSION:=$(PKG_VERSION)
|
|||
PATCH_DIR:=./patches-$(PKG_VERSION)
|
||||
CONFIG_DIR:=./config-$(PKG_VERSION)
|
||||
|
||||
PKG_MD5SUM_0.9.33 = cf9d25e4b3c87af1a99d33a6b959fbf1
|
||||
PKG_MD5SUM_0.9.33.2 = a338aaffc56f0f5040e6d9fa8a12eda1
|
||||
PKG_MD5SUM=$(PKG_MD5SUM_$(PKG_VERSION))
|
||||
|
||||
HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
|
|
|
@ -1,28 +0,0 @@
|
|||
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
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
From f87898ca4a7d4b7171779c06ff1f4848efeee431 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Thu, 30 Jun 2011 07:32:11 +0000
|
||||
Subject: mips/signalfd.h: SFD_NONBLOCK for mips is 0200 unlike 04000 commonly
|
||||
|
||||
Exposed by udev 171 which uses signalfd
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
--- a/include/sys/signalfd.h
|
||||
+++ b/include/sys/signalfd.h
|
||||
@@ -73,6 +73,15 @@ enum
|
||||
# define SFD_NONBLOCK SFD_NONBLOCK
|
||||
};
|
||||
|
||||
+#elif defined __mips__
|
||||
+enum
|
||||
+ {
|
||||
+ SFD_CLOEXEC = 02000000,
|
||||
+# define SFD_CLOEXEC SFD_CLOEXEC
|
||||
+ SFD_NONBLOCK = 0200
|
||||
+# define SFD_NONBLOCK SFD_NONBLOCK
|
||||
+ };
|
||||
+
|
||||
#else
|
||||
enum
|
||||
{
|
Loading…
Reference in a new issue