diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2017-01-31 16:10:24 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:20:20 +0000 |
commit | ab7eb1c896e4ba38b6c16acae3d25534296f62b8 (patch) | |
tree | ae5678c8d5cca5526d3f4c19636f2693b3d8ccb9 /meta/recipes-devtools/qemu/qemu_2.8.0.bb | |
parent | 70138279e4f4da74cd63402d7201c74ab2528fa8 (diff) | |
download | openembedded-core-ab7eb1c896e4ba38b6c16acae3d25534296f62b8.tar.gz openembedded-core-ab7eb1c896e4ba38b6c16acae3d25534296f62b8.tar.bz2 openembedded-core-ab7eb1c896e4ba38b6c16acae3d25534296f62b8.zip |
qemu: Upgrade to 2.8.0
Added patches:
- target-ppc-fix-user-mode.patch
Rebased patches:
- exclude-some-arm-EABI-obsolete-syscalls.patc
Removed patches (already in upstream):
- 0003-fix-CVE-2016-7908.patch
- 0004-fix-CVE-2016-7909.patch
- 0001-target-mips-add-24KEc-CPU-definition.patch
Changelog,
http://wiki.qemu.org/ChangeLog/2.8
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/qemu/qemu_2.8.0.bb')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_2.8.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu_2.8.0.bb b/meta/recipes-devtools/qemu/qemu_2.8.0.bb new file mode 100644 index 0000000000..e0527a8fd9 --- /dev/null +++ b/meta/recipes-devtools/qemu/qemu_2.8.0.bb @@ -0,0 +1,25 @@ +require qemu.inc + +LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \ + file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913" + +SRC_URI += "file://configure-fix-Darwin-target-detection.patch \ + file://qemu-enlarge-env-entry-size.patch \ + file://no-valgrind.patch \ + file://pathlimit.patch \ + file://qemu-2.5.0-cflags.patch \ + file://target-ppc-fix-user-mode.patch \ +" + +SRC_URI =+ "http://wiki.qemu-project.org/download/${BP}.tar.bz2" + +SRC_URI[md5sum] = "17940dce063b6ce450a12e719a6c9c43" +SRC_URI[sha256sum] = "dafd5d7f649907b6b617b822692f4c82e60cf29bc0fc58bc2036219b591e5e62" + +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 +} |