diff options
Diffstat (limited to 'meta/recipes-devtools/qemu/qemu_0.13.0.bb')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_0.13.0.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu_0.13.0.bb b/meta/recipes-devtools/qemu/qemu_0.13.0.bb new file mode 100644 index 0000000000..945c570f7c --- /dev/null +++ b/meta/recipes-devtools/qemu/qemu_0.13.0.bb | |||
@@ -0,0 +1,39 @@ | |||
1 | require qemu.inc | ||
2 | |||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \ | ||
4 | file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913" | ||
5 | |||
6 | PR = "r0" | ||
7 | |||
8 | FILESPATH = "${FILE_DIRNAME}/qemu-${PV}" | ||
9 | FILESDIR = "${WORKDIR}" | ||
10 | |||
11 | SRC_URI = "\ | ||
12 | http://download.savannah.gnu.org/releases/qemu/qemu-${PV}.tar.gz \ | ||
13 | file://workaround_bad_futex_headers.patch \ | ||
14 | file://qemu-git-qemugl-host.patch \ | ||
15 | file://no-strip.patch \ | ||
16 | file://fix-dirent.patch \ | ||
17 | file://fix-nogl.patch \ | ||
18 | file://qemugl-allow-glxcontext-release.patch \ | ||
19 | file://linker-flags.patch \ | ||
20 | file://init-info.patch \ | ||
21 | file://qemu-vmware-vga-depth.patch \ | ||
22 | file://qemu-ppc-hack.patch \ | ||
23 | file://enable-i386-linux-user.patch \ | ||
24 | file://vmware-vga-fifo-rewind.patch \ | ||
25 | file://fix-configure-checks.patch \ | ||
26 | file://parallel_make.patch \ | ||
27 | file://wacom-tablet-fix.patch \ | ||
28 | file://port92_fix.patch \ | ||
29 | file://powerpc_rom.bin" | ||
30 | |||
31 | SRC_URI[md5sum] = "397a0d665da8ba9d3b9583629f3d6421" | ||
32 | SRC_URI[sha256sum] = "1e6f5851b05cea6e377c835f4668408d4124cfb845f9948d922808743c5fd877" | ||
33 | |||
34 | do_install_append () { | ||
35 | install -d ${D}${datadir}/qemu | ||
36 | install -m 0755 ${WORKDIR}/powerpc_rom.bin ${D}${datadir}/qemu | ||
37 | } | ||
38 | |||
39 | S = "${WORKDIR}/qemu-${PV}" | ||