From 677d033224a5fd2893347f427ebad302ca95b508 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 5 Oct 2011 12:38:27 -0700 Subject: qemu-0.15: Add recipe and forward port patches from 0.14 (From OE-Core rev: fc63229d9cd2e5061cab0686aba4d18bc3fb4e4f) Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- .../qemu/qemu-0.15.0/fix-nogl.patch | 127 +++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 meta/recipes-devtools/qemu/qemu-0.15.0/fix-nogl.patch (limited to 'meta/recipes-devtools/qemu/qemu-0.15.0/fix-nogl.patch') diff --git a/meta/recipes-devtools/qemu/qemu-0.15.0/fix-nogl.patch b/meta/recipes-devtools/qemu/qemu-0.15.0/fix-nogl.patch new file mode 100644 index 0000000000..83b2752589 --- /dev/null +++ b/meta/recipes-devtools/qemu/qemu-0.15.0/fix-nogl.patch @@ -0,0 +1,127 @@ +Upstream-Status: Inappropriate [configuration] + +Index: qemu-0.14.0/Makefile.target +=================================================================== +--- qemu-0.14.0.orig/Makefile.target ++++ qemu-0.14.0/Makefile.target +@@ -79,6 +79,12 @@ libobj-y += cpuid.o + endif + libobj-$(CONFIG_NEED_MMU) += mmu.o + libobj-$(TARGET_I386) += helper_opengl.o opengl_exec.o ++libobj-$(TARGET_X86_64) += helper_opengl.o opengl_exec.o ++libobj-$(TARGET_ARM) += dummygl.o ++libobj-$(TARGET_MIPS) += dummygl.o ++libobj-$(TARGET_MIPS64) += dummygl.o ++libobj-$(TARGET_PPC) += dummygl.o ++libobj-$(TARGET_SH4) += dummygl.o + libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o + + libobj-y += disas.o +Index: qemu-0.14.0/target-arm/dummygl.c +=================================================================== +--- /dev/null ++++ qemu-0.14.0/target-arm/dummygl.c +@@ -0,0 +1,22 @@ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++void opengl_exec_set_parent_window(Display* _dpy, Window _parent_window) ++{ ++ ++} ++ ++void opengl_process_enable(void) ++{ ++ ++} ++ ++ ++void mem_opengl(uint64_t ptr) ++{ ++ ++} +Index: qemu-0.14.0/target-mips/dummygl.c +=================================================================== +--- /dev/null ++++ qemu-0.14.0/target-mips/dummygl.c +@@ -0,0 +1,22 @@ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++void opengl_exec_set_parent_window(Display* _dpy, Window _parent_window) ++{ ++ ++} ++ ++void opengl_process_enable(void) ++{ ++ ++} ++ ++ ++void mem_opengl(uint64_t ptr) ++{ ++ ++} +Index: qemu-0.14.0/target-ppc/dummygl.c +=================================================================== +--- /dev/null ++++ qemu-0.14.0/target-ppc/dummygl.c +@@ -0,0 +1,22 @@ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++void opengl_exec_set_parent_window(Display* _dpy, Window _parent_window) ++{ ++ ++} ++ ++void opengl_process_enable(void) ++{ ++ ++} ++ ++ ++void mem_opengl(uint64_t ptr) ++{ ++ ++} +Index: qemu-0.14.0/target-sh4/dummygl.c +=================================================================== +--- /dev/null ++++ qemu-0.14.0/target-sh4/dummygl.c +@@ -0,0 +1,22 @@ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++void opengl_exec_set_parent_window(Display* _dpy, Window _parent_window) ++{ ++ ++} ++ ++void opengl_process_enable(void) ++{ ++ ++} ++ ++ ++void mem_opengl(uint64_t ptr) ++{ ++ ++} -- cgit v1.2.3-54-g00ecf