summaryrefslogtreecommitdiff
path: root/meta/packages/qemu/qemu-0.9.1+svnr6374/11_signal_sigaction.patch
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-02-05 14:11:04 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-02-05 14:11:04 +0000
commit637183ec62f63695df0cc3a55a60697e08101145 (patch)
tree2c2d598879e75aab7463bd89aa1b96f71925ac69 /meta/packages/qemu/qemu-0.9.1+svnr6374/11_signal_sigaction.patch
parent942c23289fdb7046ccc9e0c326e6567c04d0731e (diff)
downloadopenembedded-core-637183ec62f63695df0cc3a55a60697e08101145.tar.gz
openembedded-core-637183ec62f63695df0cc3a55a60697e08101145.tar.bz2
openembedded-core-637183ec62f63695df0cc3a55a60697e08101145.tar.xz
openembedded-core-637183ec62f63695df0cc3a55a60697e08101145.zip
qemu: Update 6374 -> 6477 to fix absolute position device issues
Diffstat (limited to 'meta/packages/qemu/qemu-0.9.1+svnr6374/11_signal_sigaction.patch')
-rw-r--r--meta/packages/qemu/qemu-0.9.1+svnr6374/11_signal_sigaction.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/packages/qemu/qemu-0.9.1+svnr6374/11_signal_sigaction.patch b/meta/packages/qemu/qemu-0.9.1+svnr6374/11_signal_sigaction.patch
deleted file mode 100644
index 33c5e8b12..000000000
--- a/meta/packages/qemu/qemu-0.9.1+svnr6374/11_signal_sigaction.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-#DPATCHLEVEL=0
----
-# linux-user/signal.c | 5 +++++
-# 1 file changed, 5 insertions(+)
-#
-Index: linux-user/signal.c
-===================================================================
---- linux-user/signal.c.orig 2007-12-03 23:47:44.000000000 +0000
-+++ linux-user/signal.c 2007-12-03 23:47:46.000000000 +0000
-@@ -512,6 +512,11 @@ int do_sigaction(int sig, const struct t
-
- if (sig < 1 || sig > TARGET_NSIG || sig == SIGKILL || sig == SIGSTOP)
- return -EINVAL;
-+
-+ /* no point doing the stuff as those are not allowed for sigaction */
-+ if ((sig == TARGET_SIGKILL) || (sig == TARGET_SIGSTOP))
-+ return -EINVAL;
-+
- k = &sigact_table[sig - 1];
- #if defined(DEBUG_SIGNAL)
- fprintf(stderr, "sigaction sig=%d act=0x%08x, oact=0x%08x\n",