From 59396c67007ae1dd75acc4aa62f586a677d567ac Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Tue, 28 Nov 2017 20:40:09 +0800 Subject: qemu: 2.10.1 -> 2.11.0-rc2 (test) Signed-off-by: Robert Yang --- meta/recipes-devtools/qemu/qemu_2.11.0.bb | 56 +++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 meta/recipes-devtools/qemu/qemu_2.11.0.bb (limited to 'meta/recipes-devtools/qemu/qemu_2.11.0.bb') diff --git a/meta/recipes-devtools/qemu/qemu_2.11.0.bb b/meta/recipes-devtools/qemu/qemu_2.11.0.bb new file mode 100644 index 0000000000..e5bf24305f --- /dev/null +++ b/meta/recipes-devtools/qemu/qemu_2.11.0.bb @@ -0,0 +1,56 @@ +require qemu.inc + +inherit ptest + +RDEPENDS_${PN}-ptest = "bash make" + +LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \ + file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913" + +SRC_URI = "http://wiki.qemu-project.org/download/${BP}-rc2.tar.xz \ + file://powerpc_rom.bin \ + file://disable-grabs.patch \ + file://wacom.patch \ + file://add-ptest-in-makefile-v10.patch \ + file://run-ptest \ + file://qemu-enlarge-env-entry-size.patch \ + file://no-valgrind.patch \ + file://pathlimit.patch \ + file://qemu-2.5.0-cflags.patch \ + file://glibc-2.25.patch \ + file://apic-fixup-fallthrough-to-PIC.patch \ + file://ppc_locking.patch \ + " +UPSTREAM_CHECK_REGEX = "qemu-(?P\d+\..*)\.tar" + + +SRC_URI_append_class-native = " \ + file://fix-libcap-header-issue-on-some-distro.patch \ + file://cpus.c-qemu_cpu_kick_thread_debugging.patch \ + " + +SRC_URI[md5sum] = "7142d4ea10e6daef45809db1db839ce1" +SRC_URI[sha256sum] = "bfb02b1bf0a0ffce72652b64bdb53e023e34ba7b191e1bc9e6f245c75e5d4333" + +S = "${WORKDIR}/qemu-2.11.0-rc2" + +COMPATIBLE_HOST_mipsarchn32 = "null" +COMPATIBLE_HOST_mipsarchn64 = "null" + +do_install_append() { + # Prevent QA warnings about installed ${localstatedir}/run + if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi + install -Dm 0755 ${WORKDIR}/powerpc_rom.bin ${D}${datadir}/qemu +} + +do_compile_ptest() { + make buildtest-TESTS +} + +do_install_ptest() { + cp -rL ${B}/tests ${D}${PTEST_PATH} + find ${D}${PTEST_PATH}/tests -type f -name "*.[Sshcod]" | xargs -i rm -rf {} + + cp ${S}/tests/Makefile.include ${D}${PTEST_PATH}/tests +} + -- cgit 1.2.3-korg