mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
qemu: Work around bad system futex headers
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2478 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
---
|
||||
linux-user/syscall.c | 10 +++++++++-
|
||||
1 file changed, 9 insertions(+), 1 deletion(-)
|
||||
|
||||
Index: qemu/linux-user/syscall.c
|
||||
===================================================================
|
||||
--- qemu.orig/linux-user/syscall.c 2007-08-09 20:28:06.000000000 +0100
|
||||
+++ qemu/linux-user/syscall.c 2007-08-09 20:28:41.000000000 +0100
|
||||
@@ -61,7 +61,15 @@
|
||||
#define tchars host_tchars /* same as target */
|
||||
#define ltchars host_ltchars /* same as target */
|
||||
|
||||
-#include <linux/futex.h>
|
||||
+#define FUTEX_WAIT 0
|
||||
+#define FUTEX_WAKE 1
|
||||
+#define FUTEX_FD 2
|
||||
+#define FUTEX_REQUEUE 3
|
||||
+#define FUTEX_CMP_REQUEUE 4
|
||||
+#define FUTEX_WAKE_OP 5
|
||||
+#define FUTEX_LOCK_PI 6
|
||||
+#define FUTEX_UNLOCK_PI 7
|
||||
+
|
||||
#include <linux/termios.h>
|
||||
#include <linux/unistd.h>
|
||||
#include <linux/utsname.h>
|
||||
@@ -1,7 +1,7 @@
|
||||
LICENSE = "GPL"
|
||||
DEPENDS = "zlib"
|
||||
PV = "0.9.0+cvs${SRCDATE}"
|
||||
PR = "r3"
|
||||
PR = "r4"
|
||||
|
||||
FILESDIR = "${WORKDIR}"
|
||||
|
||||
@@ -32,6 +32,7 @@ SRC_URI = "\
|
||||
file://qemu-0.9.0-nptl.patch;patch=1 \
|
||||
file://qemu-0.9.0-nptl-update.patch;patch=1 \
|
||||
file://qemu-amd64-32b-mapping-0.9.0.patch;patch=1 \
|
||||
file://workaround_bad_futex_headers.patch;patch=1 \
|
||||
file://fix_segfault.patch;patch=1"
|
||||
|
||||
# svn://svn.o-hand.com/repos/misc/trunk/qemu-packaging/qemu;module=debian;proto=http;srcdate=20070119 \
|
||||
|
||||
Reference in New Issue
Block a user