From fda2bb511e8ddc93cfe84bba740f6af151d37b07 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 13 Nov 2007 20:00:21 +0000 Subject: Add android-goldfish metadata to meta-extras git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3143 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- meta-extras/packages/qemu/qemu-android-native.bb | 25 ++++++++++++ .../packages/qemu/qemu-android-native/fixes.patch | 45 ++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 meta-extras/packages/qemu/qemu-android-native.bb create mode 100644 meta-extras/packages/qemu/qemu-android-native/fixes.patch (limited to 'meta-extras/packages/qemu') diff --git a/meta-extras/packages/qemu/qemu-android-native.bb b/meta-extras/packages/qemu/qemu-android-native.bb new file mode 100644 index 000000000..169d79086 --- /dev/null +++ b/meta-extras/packages/qemu/qemu-android-native.bb @@ -0,0 +1,25 @@ +LICENSE = "GPL" +DEPENDS = "zlib-native" +PV = "0.0-rc20" +PR = "r0" + +SRC_URI = "http://android.googlecode.com/files/android-emulator-m3-rc20.tar.bz2 \ + file://fixes.patch;patch=1" + +S = "${WORKDIR}/android-emulator-20071111/qemu" + +EXTRA_OECONF = "--disable-gfx-check --target-list=arm-softmmu --enable-nand --enable-skins --enable-trace --enable-shaper --use-sdl-config=${prefix}/hackedsdl/bin/sdl-config --disable-user --disable-kqemu --enable-sdl --static-png --static-sdl" + +inherit autotools +inherit native + +do_unfubar () { + chmod -R u+w ${WORKDIR}/ + cd ${WORKDIR}/android-emulator-20071111/sdl + configure --prefix=${prefix}/hackedsdl + make + make install +} + +addtask unfubar after do_unpack before do_patch + diff --git a/meta-extras/packages/qemu/qemu-android-native/fixes.patch b/meta-extras/packages/qemu/qemu-android-native/fixes.patch new file mode 100644 index 000000000..5d16b6061 --- /dev/null +++ b/meta-extras/packages/qemu/qemu-android-native/fixes.patch @@ -0,0 +1,45 @@ +Index: qemu/linux-user/elfload.c +=================================================================== +--- qemu.orig/linux-user/elfload.c 2007-11-12 06:58:42.000000000 +0000 ++++ qemu/linux-user/elfload.c 2007-11-12 20:41:37.000000000 +0000 +@@ -12,6 +12,10 @@ + #include "qemu.h" + #include "disas.h" + ++#ifndef O_BINARY ++#define O_BINARY 0 ++#endif ++ + /* this flag is uneffective under linux too, should be deleted */ + #ifndef MAP_DENYWRITE + #define MAP_DENYWRITE 0 +Index: qemu/linux-user/linuxload.c +=================================================================== +--- qemu.orig/linux-user/linuxload.c 2007-11-12 06:58:42.000000000 +0000 ++++ qemu/linux-user/linuxload.c 2007-11-12 20:35:16.000000000 +0000 +@@ -12,6 +12,10 @@ + + #define NGROUPS 32 + ++#ifndef O_BINARY ++#define O_BINARY 0 ++#endif ++ + /* ??? This should really be somewhere else. */ + void memcpy_to_target(target_ulong dest, const void *src, + unsigned long len) +Index: qemu/hw/qfb_fs.c +=================================================================== +--- qemu.orig/hw/qfb_fs.c 2007-11-12 06:58:41.000000000 +0000 ++++ qemu/hw/qfb_fs.c 2007-11-12 20:59:34.000000000 +0000 +@@ -14,6 +14,10 @@ + #include + #include + ++#ifndef O_BINARY ++#define O_BINARY 0 ++#endif ++ + /* all mount paths */ + static int next_path_index = 0; + static struct mount_path mount_paths[MAX_MOUNT_PATHS]; -- cgit v1.2.3