diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 5 | ||||
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_0.14.0.bb | 24 |
2 files changed, 21 insertions, 8 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index 85476d6d93..e5414ff7f7 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
@@ -1,7 +1,7 @@ | |||
1 | DESCRIPTION = "open source processor emulator" | 1 | DESCRIPTION = "open source processor emulator" |
2 | HOMEPAGE = "http://qemu.org" | 2 | HOMEPAGE = "http://qemu.org" |
3 | LICENSE = "GPLv2 & LGPLv2.1" | 3 | LICENSE = "GPLv2 & LGPLv2.1" |
4 | DEPENDS = "zlib alsa-lib qemugl" | 4 | DEPENDS = "zlib alsa-lib virtual/libx11" |
5 | 5 | ||
6 | # QEMU_TARGETS is overridable variable | 6 | # QEMU_TARGETS is overridable variable |
7 | QEMU_TARGETS ?= "arm i386 mips mipsel mips64 mips64el ppc sh4 x86_64" | 7 | QEMU_TARGETS ?= "arm i386 mips mipsel mips64 mips64el ppc sh4 x86_64" |
@@ -40,7 +40,7 @@ do_configure_prepend_virtclass-native() { | |||
40 | 40 | ||
41 | do_configure() { | 41 | do_configure() { |
42 | ${S}/configure --prefix=${prefix} --sysconfdir=${sysconfdir} --disable-strip ${EXTRA_OECONF} | 42 | ${S}/configure --prefix=${prefix} --sysconfdir=${sysconfdir} --disable-strip ${EXTRA_OECONF} |
43 | chmod a+x ${S}/target-i386/beginend_funcs.sh | 43 | test ! -e ${S}/target-i386/beginend_funcs.sh || chmod a+x ${S}/target-i386/beginend_funcs.sh |
44 | } | 44 | } |
45 | 45 | ||
46 | do_install () { | 46 | do_install () { |
@@ -50,7 +50,6 @@ do_install () { | |||
50 | install -m 0755 ${WORKDIR}/powerpc_rom.bin ${D}${datadir}/qemu | 50 | install -m 0755 ${WORKDIR}/powerpc_rom.bin ${D}${datadir}/qemu |
51 | } | 51 | } |
52 | 52 | ||
53 | SRC_URI_append_virtclass-nativesdk = " file://glflags.patch" | ||
54 | DEPENDS_virtclass-native = "zlib-native alsa-lib-native" | 53 | DEPENDS_virtclass-native = "zlib-native alsa-lib-native" |
55 | DEPENDS_virtclass-nativesdk = "zlib-nativesdk libsdl-nativesdk qemugl-nativesdk" | 54 | DEPENDS_virtclass-nativesdk = "zlib-nativesdk libsdl-nativesdk qemugl-nativesdk" |
56 | RDEPENDS_virtclass-nativesdk = "libsdl-nativesdk" | 55 | RDEPENDS_virtclass-nativesdk = "libsdl-nativesdk" |
diff --git a/meta/recipes-devtools/qemu/qemu_0.14.0.bb b/meta/recipes-devtools/qemu/qemu_0.14.0.bb index de12f62072..055321ec3e 100644 --- a/meta/recipes-devtools/qemu/qemu_0.14.0.bb +++ b/meta/recipes-devtools/qemu/qemu_0.14.0.bb | |||
@@ -11,22 +11,36 @@ FILESDIR = "${WORKDIR}" | |||
11 | SRC_URI = "\ | 11 | SRC_URI = "\ |
12 | http://download.savannah.gnu.org/releases/qemu/qemu-${PV}.tar.gz \ | 12 | http://download.savannah.gnu.org/releases/qemu/qemu-${PV}.tar.gz \ |
13 | file://powerpc_rom.bin \ | 13 | file://powerpc_rom.bin \ |
14 | file://qemu-git-qemugl-host.patch \ | ||
15 | file://no-strip.patch \ | 14 | file://no-strip.patch \ |
16 | file://fix-nogl.patch \ | ||
17 | file://qemugl-allow-glxcontext-release.patch \ | ||
18 | file://linker-flags.patch \ | 15 | file://linker-flags.patch \ |
19 | file://init-info.patch \ | ||
20 | file://qemu-vmware-vga-depth.patch \ | 16 | file://qemu-vmware-vga-depth.patch \ |
21 | file://enable-i386-linux-user.patch \ | ||
22 | file://fix-configure-checks.patch \ | 17 | file://fix-configure-checks.patch \ |
23 | file://fallback-to-safe-mmap_min_addr.patch \ | 18 | file://fallback-to-safe-mmap_min_addr.patch \ |
24 | file://spice-qxl-locking-fix-for-qemu-kvm.patch \ | 19 | file://spice-qxl-locking-fix-for-qemu-kvm.patch \ |
25 | file://Detect-and-use-GCC-atomic-builtins-for-locking.patch \ | 20 | file://Detect-and-use-GCC-atomic-builtins-for-locking.patch \ |
26 | file://larger_default_ram_size.patch \ | 21 | file://larger_default_ram_size.patch \ |
22 | " | ||
23 | |||
24 | # Only use the GL passthrough patches for native/nativesdk versions | ||
25 | QEMUGLPATCHES = "\ | ||
26 | file://qemu-git-qemugl-host.patch \ | ||
27 | file://fix-nogl.patch \ | ||
28 | file://qemugl-allow-glxcontext-release.patch \ | ||
29 | file://init-info.patch \ | ||
30 | file://enable-i386-linux-user.patch \ | ||
27 | file://qemugl-fix.patch \ | 31 | file://qemugl-fix.patch \ |
28 | file://opengl-sdl-fix.patch \ | 32 | file://opengl-sdl-fix.patch \ |
29 | " | 33 | " |
34 | |||
35 | SRC_URI_append_virtclass-native = "\ | ||
36 | ${QEMUGLPATCHES} \ | ||
37 | " | ||
38 | |||
39 | SRC_URI_append_virtclass-nativesdk = "\ | ||
40 | ${QEMUGLPATCHES} \ | ||
41 | file://glflags.patch \ | ||
42 | " | ||
43 | |||
30 | SRC_URI[md5sum] = "f9d145d5c09de9f0984ffe9bd1229970" | 44 | SRC_URI[md5sum] = "f9d145d5c09de9f0984ffe9bd1229970" |
31 | SRC_URI[sha256sum] = "ba21e84d7853217830e167dae9999cdbff481189c6a0bb600ac7fb7201453108" | 45 | SRC_URI[sha256sum] = "ba21e84d7853217830e167dae9999cdbff481189c6a0bb600ac7fb7201453108" |
32 | 46 | ||