diff options
| author | Chunrong Guo <B40290@freescale.com> | 2015-01-08 15:07:15 +0800 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-01-13 11:07:12 -0200 |
| commit | 9059aeaef3b968d199085dc9ea92e10e7083bd07 (patch) | |
| tree | ed146c27cd08182b579420f29500069ea78cf14d | |
| parent | 9d30b81dfa8c713c6302ca605ae70a74c76a2e7d (diff) | |
| download | meta-freescale-9059aeaef3b968d199085dc9ea92e10e7083bd07.tar.gz | |
qemu-fsl: add recipes for Layerscape1 support
QEMU is a generic and open source machine emulator and virtualizer.
Signed-off-by: Chunrong Guo <B40290@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
| -rw-r--r-- | meta-fsl-arm/recipes-devtools/qemu/qemu-fsl_git.bb | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/meta-fsl-arm/recipes-devtools/qemu/qemu-fsl_git.bb b/meta-fsl-arm/recipes-devtools/qemu/qemu-fsl_git.bb new file mode 100644 index 000000000..20386e227 --- /dev/null +++ b/meta-fsl-arm/recipes-devtools/qemu/qemu-fsl_git.bb | |||
| @@ -0,0 +1,50 @@ | |||
| 1 | require recipes-devtools/qemu/qemu.inc | ||
| 2 | |||
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \ | ||
| 4 | file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913" | ||
| 5 | |||
| 6 | # This means QEMU v1.7 with FSL specific patches applied | ||
| 7 | PV = "1.7+${SRCPV}" | ||
| 8 | |||
| 9 | # NOTE: these options are note available in qemu 1.7, but qemu.inc assumes | ||
| 10 | # version 2.0+ where they are available. For now we unset them, but we should | ||
| 11 | # remove the following lines when upgrading to qemu 2.0+: | ||
| 12 | PACKAGECONFIG[quorum] = "" | ||
| 13 | PACKAGECONFIG[lzo] = "" | ||
| 14 | PACKAGECONFIG[numa] = "" | ||
| 15 | PACKAGECONFIG[gtk+] = "" | ||
| 16 | |||
| 17 | SRC_URI = "git://git.freescale.com/ppc/sdk/qemu.git;branch=sdk-v1.7.x \ | ||
| 18 | " | ||
| 19 | SRCREV = "6ac4597c059d35e2737b234747243e56d340f4db" | ||
| 20 | |||
| 21 | S = "${WORKDIR}/git" | ||
| 22 | |||
| 23 | QEMU_TARGETS = "arm" | ||
| 24 | |||
| 25 | inherit pkgconfig | ||
| 26 | |||
| 27 | # Append build host pkg-config paths for native target since the host may provide sdl | ||
| 28 | do_configure_prepend() { | ||
| 29 | export PKG_CONFIG=${STAGING_DIR_NATIVE}${bindir_native}/pkg-config | ||
| 30 | } | ||
| 31 | |||
| 32 | do_configure_append () { | ||
| 33 | if ! grep 'CONFIG_FDT=y' config-host.mak; then | ||
| 34 | echo "CONFIG_RDMA=y" >> config_host_mak | ||
| 35 | fi | ||
| 36 | } | ||
| 37 | |||
| 38 | # gets around qemu.inc trying to install powerpc_rom.bin | ||
| 39 | do_install_prepend() { | ||
| 40 | touch ${WORKDIR}/powerpc_rom.bin | ||
| 41 | } | ||
| 42 | |||
| 43 | do_install_append() { | ||
| 44 | rm ${WORKDIR}/powerpc_rom.bin | ||
| 45 | |||
| 46 | # Prevent QA warnings about installed ${localstatedir}/run | ||
| 47 | if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi | ||
| 48 | } | ||
| 49 | |||
| 50 | FILES_${PN} += "/usr/share/qemu/" | ||
