diff options
author | Roman I Khimov <khimov@altell.ru> | 2010-03-08 18:27:13 +0300 |
---|---|---|
committer | Roman I Khimov <khimov@altell.ru> | 2010-03-09 20:28:31 +0300 |
commit | 677630b31b8ce4bd8cb723a4c66414739c9d4331 (patch) | |
tree | e50f12e28ba19ee8e784f4aede7e58b67df5e59d /recipes/qemu/qemu-0.9.1/fix_segfault.patch | |
parent | 44ecf674747fef9f71f928660b394ca470a135fc (diff) |
qemu: remove 0.9.x
QEMU 0.9.x is obsolete this days and with all modifications made for
QEMU 0.10.x in OE, versions 0.9.x are unusable anyway. 0.10.3 was
introduced 10 month ago, so a good transition time was also given.
Now it's time to just kill it.
Also remove cvs and svn versions since those are 0.9.x leftovers and
QEMU moved to git long ago.
Also remove gcc3 checks since that are not relevant for QEMU 0.10+.
Also remove from icecc blacklist, since QEMU builds fine with it and
the reason for blacklisting was GCC 3.
Signed-off-by: Roman I Khimov <khimov@altell.ru>
Acked-by: Tom Rini <tom_rini@mentor.com>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
Diffstat (limited to 'recipes/qemu/qemu-0.9.1/fix_segfault.patch')
-rw-r--r-- | recipes/qemu/qemu-0.9.1/fix_segfault.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/recipes/qemu/qemu-0.9.1/fix_segfault.patch b/recipes/qemu/qemu-0.9.1/fix_segfault.patch deleted file mode 100644 index 443c330650..0000000000 --- a/recipes/qemu/qemu-0.9.1/fix_segfault.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- - linux-user/syscall.c | 22 ---------------------- - 1 file changed, 22 deletions(-) - -Index: qemu/linux-user/syscall.c -=================================================================== ---- qemu.orig/linux-user/syscall.c 2007-12-03 23:40:11.000000000 +0000 -+++ qemu/linux-user/syscall.c 2007-12-03 23:40:21.000000000 +0000 -@@ -5695,28 +5695,6 @@ abi_long do_syscall(void *cpu_env, int n - goto unimplemented_nowarn; - #endif - --#ifdef TARGET_NR_clock_gettime -- case TARGET_NR_clock_gettime: -- { -- struct timespec ts; -- ret = get_errno(clock_gettime(arg1, &ts)); -- if (!is_error(ret)) { -- host_to_target_timespec(arg2, &ts); -- } -- break; -- } --#endif --#ifdef TARGET_NR_clock_getres -- case TARGET_NR_clock_getres: -- { -- struct timespec ts; -- ret = get_errno(clock_getres(arg1, &ts)); -- if (!is_error(ret)) { -- host_to_target_timespec(arg2, &ts); -- } -- break; -- } --#endif - - #if defined(TARGET_NR_set_tid_address) && defined(__NR_set_tid_address) - case TARGET_NR_set_tid_address: |