summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/qemu/qemu.inc11
-rw-r--r--meta/recipes-devtools/qemu/qemu_0.14.0.bb5
2 files changed, 10 insertions, 6 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc
index 18073eb4fc..ac8a3eb10d 100644
--- a/meta/recipes-devtools/qemu/qemu.inc
+++ b/meta/recipes-devtools/qemu/qemu.inc
@@ -38,10 +38,17 @@ do_configure_prepend_virtclass-native() {
38} 38}
39 39
40do_configure() { 40do_configure() {
41 ${S}/configure --prefix=${prefix} ${EXTRA_OECONF} 41 ${S}/configure --prefix=${prefix} --sysconfdir=${sysconfdir} --disable-strip ${EXTRA_OECONF}
42 chmod a+x ${S}/target-i386/beginend_funcs.sh 42 chmod a+x ${S}/target-i386/beginend_funcs.sh
43} 43}
44 44
45do_install () {
46 export STRIP="true"
47 autotools_do_install
48 install -d ${D}${datadir}/qemu
49 install -m 0755 ${WORKDIR}/powerpc_rom.bin ${D}${datadir}/qemu
50}
51
45SRC_URI_append_virtclass-nativesdk = " file://glflags.patch" 52SRC_URI_append_virtclass-nativesdk = " file://glflags.patch"
46DEPENDS_virtclass-native = "zlib-native alsa-lib-native" 53DEPENDS_virtclass-native = "zlib-native alsa-lib-native"
47DEPENDS_virtclass-nativesdk = "zlib-nativesdk libsdl-nativesdk qemugl-nativesdk" 54DEPENDS_virtclass-nativesdk = "zlib-nativesdk libsdl-nativesdk qemugl-nativesdk"
@@ -53,3 +60,5 @@ BBCLASSEXTEND = "native nativesdk"
53# Qemu target will not build in world build for ARM or Mips 60# Qemu target will not build in world build for ARM or Mips
54BROKEN_qemuarm = "1" 61BROKEN_qemuarm = "1"
55BROKEN_qemumips = "1" 62BROKEN_qemumips = "1"
63
64INSANE_SKIP_${PN} = "arch"
diff --git a/meta/recipes-devtools/qemu/qemu_0.14.0.bb b/meta/recipes-devtools/qemu/qemu_0.14.0.bb
index ccf5ee4f2d..de12f62072 100644
--- a/meta/recipes-devtools/qemu/qemu_0.14.0.bb
+++ b/meta/recipes-devtools/qemu/qemu_0.14.0.bb
@@ -30,9 +30,4 @@ SRC_URI = "\
30SRC_URI[md5sum] = "f9d145d5c09de9f0984ffe9bd1229970" 30SRC_URI[md5sum] = "f9d145d5c09de9f0984ffe9bd1229970"
31SRC_URI[sha256sum] = "ba21e84d7853217830e167dae9999cdbff481189c6a0bb600ac7fb7201453108" 31SRC_URI[sha256sum] = "ba21e84d7853217830e167dae9999cdbff481189c6a0bb600ac7fb7201453108"
32 32
33do_install_append () {
34 install -d ${D}${datadir}/qemu
35 install -m 0755 ${WORKDIR}/powerpc_rom.bin ${D}${datadir}/qemu
36}
37
38S = "${WORKDIR}/qemu-${PV}" 33S = "${WORKDIR}/qemu-${PV}"