diff options
author | Kai Kang <kai.kang@windriver.com> | 2014-12-18 09:36:40 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-31 17:04:42 +0000 |
commit | 39dea062d6ad23d375b0d7ff986600254b21601d (patch) | |
tree | 7541977198b2b73622405eb0d13ff73c38eec20b /meta/recipes-devtools/qemu/qemu_2.2.0.bb | |
parent | 5c8ef2bfe2782d849fde7367adf446636696a520 (diff) | |
download | poky-39dea062d6ad23d375b0d7ff986600254b21601d.tar.gz |
qemu: upgrade to 2.2.0
Upgrade qemu from version 2.1.2 to 2.2.0.
Update Qemu-Arm-versatilepb-Add-memory-size-checking.patch for new
version qemu.
(From OE-Core rev: a693ccb1603be1125bea3b254bf4b6c4188890ac)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/qemu/qemu_2.2.0.bb')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_2.2.0.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu_2.2.0.bb b/meta/recipes-devtools/qemu/qemu_2.2.0.bb new file mode 100644 index 0000000000..209b910103 --- /dev/null +++ b/meta/recipes-devtools/qemu/qemu_2.2.0.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | require qemu.inc | ||
2 | |||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \ | ||
4 | file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913" | ||
5 | |||
6 | SRC_URI += "file://configure-fix-Darwin-target-detection.patch \ | ||
7 | file://qemu-enlarge-env-entry-size.patch \ | ||
8 | file://Qemu-Arm-versatilepb-Add-memory-size-checking.patch \ | ||
9 | " | ||
10 | SRC_URI_prepend = "http://wiki.qemu-project.org/download/${BP}.tar.bz2" | ||
11 | SRC_URI[md5sum] = "f7a5e2da22d057eb838a91da7aff43c8" | ||
12 | SRC_URI[sha256sum] = "b68c9b6c7c694f5489b5a6bffe993cd976ffbb78e7d178eb3bc016caf460039c" | ||
13 | |||
14 | COMPATIBLE_HOST_class-target_mips64 = "null" | ||
15 | |||
16 | do_install_append() { | ||
17 | # Prevent QA warnings about installed ${localstatedir}/run | ||
18 | if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi | ||
19 | } | ||