diff options
Diffstat (limited to 'meta/recipes-devtools/qemu/qemu_2.1.0.bb')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_2.1.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu_2.1.0.bb b/meta/recipes-devtools/qemu/qemu_2.1.0.bb new file mode 100644 index 0000000000..abf8dfcf1c --- /dev/null +++ b/meta/recipes-devtools/qemu/qemu_2.1.0.bb | |||
@@ -0,0 +1,27 @@ | |||
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://qemu-enlarge-env-entry-size.patch \ | ||
7 | file://Qemu-Arm-versatilepb-Add-memory-size-checking.patch \ | ||
8 | " | ||
9 | |||
10 | SRC_URI_prepend = "http://wiki.qemu-project.org/download/${BP}.tar.bz2" | ||
11 | SRC_URI[md5sum] = "6726977292b448cbc7f89998fac6983b" | ||
12 | SRC_URI[sha256sum] = "397e23184f4bf613589a8fe0c6542461dc2afdf17ed337e97e6fd2f31e8f8802" | ||
13 | |||
14 | COMPATIBLE_HOST_class-target_mips64 = "null" | ||
15 | |||
16 | do_sanitize_sources() { | ||
17 | # These .git files point to a nonexistent path "../.git/modules" and will confuse git | ||
18 | # if it tries to recurse into those directories. | ||
19 | rm -f ${S}/dtc/.git ${S}/pixman/.git | ||
20 | } | ||
21 | |||
22 | addtask sanitize_sources after do_unpack before do_patch | ||
23 | |||
24 | do_install_append() { | ||
25 | # Prevent QA warnings about installed ${localstatedir}/run | ||
26 | if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi | ||
27 | } | ||