summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/qemu/qemu_1.7.0.bb
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-16 03:05:19 +0200
commitc527fd1f14c27855a37f2e8ac5346ce8d940ced2 (patch)
treebb002c1fdf011c41dbd2f0927bed23ecb5f83c97 /meta/recipes-devtools/qemu/qemu_1.7.0.bb
downloadpoky-c527fd1f14c27855a37f2e8ac5346ce8d940ced2.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-devtools/qemu/qemu_1.7.0.bb')
-rw-r--r--meta/recipes-devtools/qemu/qemu_1.7.0.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu_1.7.0.bb b/meta/recipes-devtools/qemu/qemu_1.7.0.bb
new file mode 100644
index 0000000000..b776cccc02
--- /dev/null
+++ b/meta/recipes-devtools/qemu/qemu_1.7.0.bb
@@ -0,0 +1,27 @@
1require qemu.inc
2
3LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
4 file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913"
5
6SRC_URI += "file://fxrstorssefix.patch \
7 file://qemu-enlarge-env-entry-size.patch \
8 file://Qemu-Arm-versatilepb-Add-memory-size-checking.patch"
9
10SRC_URI_prepend = "http://wiki.qemu.org/download/qemu-${PV}.tar.bz2"
11SRC_URI[md5sum] = "32893941d40d052a5e649efcf06aca06"
12SRC_URI[sha256sum] = "31f333a85f2d14c605a77679904a9668eaeb1b6dc7da53a1665230f46bc21314"
13
14COMPATIBLE_HOST_class-target_mips64 = "null"
15
16do_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
22addtask sanitize_sources after do_unpack before do_patch
23
24do_install_append() {
25 # Prevent QA warnings about installed ${localstatedir}/run
26 if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi
27}