summaryrefslogtreecommitdiff
path: root/meta/packages/qemu/qemu-0.12.4/workaround_bad_futex_headers.patch
diff options
context:
space:
mode:
authorJeff Dike <jdike@linux.intel.com>2010-06-03 15:39:57 -0400
committerRichard Purdie <rpurdie@linux.intel.com>2010-06-07 16:10:19 +0100
commitbf59d217a8c6376f90832927ad3254fbbbbf48f3 (patch)
treebc80642371198d9cb8f80b39a2c99369a37e2711 /meta/packages/qemu/qemu-0.12.4/workaround_bad_futex_headers.patch
parentfc81ca7d2d4c2a17967af53f82422892da32fb80 (diff)
downloadopenembedded-core-bf59d217a8c6376f90832927ad3254fbbbbf48f3.tar.gz
openembedded-core-bf59d217a8c6376f90832927ad3254fbbbbf48f3.tar.bz2
openembedded-core-bf59d217a8c6376f90832927ad3254fbbbbf48f3.tar.xz
openembedded-core-bf59d217a8c6376f90832927ad3254fbbbbf48f3.zip
qemu: Update to 0.12.4
Renamed the recipe to 0.12.4. Moved the patches directory to qemu-0.12.4 - when it was named qemu-0.12, bitbake silently ignored the patches, and only failed when it came time to apply them. Added a FILESDIR to the git recipe and changed its PV to 0.12.4 so it can use the same patches as the normal recipe for now. Removed the series file - it wasn't needed. Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Diffstat (limited to 'meta/packages/qemu/qemu-0.12.4/workaround_bad_futex_headers.patch')
-rw-r--r--meta/packages/qemu/qemu-0.12.4/workaround_bad_futex_headers.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/packages/qemu/qemu-0.12.4/workaround_bad_futex_headers.patch b/meta/packages/qemu/qemu-0.12.4/workaround_bad_futex_headers.patch
new file mode 100644
index 000000000..7727a39f3
--- /dev/null
+++ b/meta/packages/qemu/qemu-0.12.4/workaround_bad_futex_headers.patch
@@ -0,0 +1,24 @@
+---
+ linux-user/syscall.c | 10 +++++++++-
+ 1 file changed, 9 insertions(+), 1 deletion(-)
+
+Index: qemu/linux-user/syscall.c
+===================================================================
+--- qemu.orig/linux-user/syscall.c 2010-05-11 16:52:16.929785275 -0400
++++ qemu/linux-user/syscall.c 2010-05-11 16:52:25.174783517 -0400
+@@ -94,6 +94,15 @@
+ #define CLONE_NPTL_FLAGS2 0
+ #endif
+
++#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
++
+ //#define DEBUG
+
+ //#include <linux/msdos_fs.h>