diff options
| author | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-23 16:02:25 -0300 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-28 23:26:59 -0300 |
| commit | 6a868a671472d454b407a165fc31c5f7dfe783c6 (patch) | |
| tree | 7bd2ab13a04d14215264cc992501970cacfb20ef /recipes-devtools/qemu | |
| parent | 62e212fe4812a6c726df4ac8e77d4a77e0e54247 (diff) | |
| download | meta-freescale-6a868a671472d454b407a165fc31c5f7dfe783c6.tar.gz | |
Move meta-fsl-ppc content to layer root
This commit is just a rename of all contents of meta-fsl-ppc
subdirectory to this layer's root, merging the contents of common
files, subsequent changes are based on top of that.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-devtools/qemu')
| -rw-r--r-- | recipes-devtools/qemu/qemu_fslgit.bb | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/recipes-devtools/qemu/qemu_fslgit.bb b/recipes-devtools/qemu/qemu_fslgit.bb new file mode 100644 index 000000000..f977a3795 --- /dev/null +++ b/recipes-devtools/qemu/qemu_fslgit.bb | |||
| @@ -0,0 +1,55 @@ | |||
| 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 v2.2.0 with FSL specific patches applied | ||
| 7 | PV = "2.2.0+fsl" | ||
| 8 | |||
| 9 | # NOTE: this recipe requires poky's qemu.inc which assumes version 2.3 | ||
| 10 | # where glx enable config option changed to --enable-opengl. For now we | ||
| 11 | # restore it, but we should remove the following lines when upgrading | ||
| 12 | # to qemu 2.3: | ||
| 13 | PACKAGECONFIG[glx] = "--enable-glx,--disable-glx,mesa" | ||
| 14 | |||
| 15 | SRC_URI = "git://git.freescale.com/ppc/sdk/qemu.git;branch=master" | ||
| 16 | SRCREV = "00ac004143e9fe46944a1885b04268fcd3a95a3a" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/git" | ||
| 19 | |||
| 20 | QEMU_TARGETS = "ppc" | ||
| 21 | PPC_OECONF = '${SDL} --cross-prefix=${TARGET_PREFIX} --disable-werror --disable-vnc --disable-bluez --disable-curl --enable-libusb' | ||
| 22 | EXTRA_OECONF_e5500-64b = "--target-list=ppc64-softmmu ${PPC_OECONF}" | ||
| 23 | EXTRA_OECONF_e6500-64b = "--target-list=ppc64-softmmu ${PPC_OECONF}" | ||
| 24 | EXTRA_OECONF_e6500 = "--target-list=ppc64-softmmu ${PPC_OECONF}" | ||
| 25 | EXTRA_OECONF_e5500 = "--target-list=ppc64-softmmu ${PPC_OECONF}" | ||
| 26 | EXTRA_OECONF_e500v2 = "--target-list=ppc-softmmu ${PPC_OECONF}" | ||
| 27 | EXTRA_OECONF_e500mc = "--target-list=ppc-softmmu ${PPC_OECONF}" | ||
| 28 | |||
| 29 | do_configure_prepend() { | ||
| 30 | export PKG_CONFIG=${STAGING_DIR_NATIVE}${bindir_native}/pkg-config | ||
| 31 | } | ||
| 32 | |||
| 33 | do_configure_append () { | ||
| 34 | grep 'CONFIG_FDT=y' config-host.mak | ||
| 35 | } | ||
| 36 | |||
| 37 | # gets around qemu.inc trying to install powerpc_rom.bin | ||
| 38 | do_install_prepend() { | ||
| 39 | touch ${WORKDIR}/powerpc_rom.bin | ||
| 40 | } | ||
| 41 | |||
| 42 | do_install_append() { | ||
| 43 | rm ${WORKDIR}/powerpc_rom.bin | ||
| 44 | # Prevent QA warnings about installed ${localstatedir}/run | ||
| 45 | if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi | ||
| 46 | } | ||
| 47 | |||
| 48 | INSANE_SKIP_${PN} += "dev-deps" | ||
| 49 | |||
| 50 | # This is only meant to be build to run on the target | ||
| 51 | # for the given arch types listed, otherwise don't let | ||
| 52 | # the package get built. COMPATIBLE_HOST would not work | ||
| 53 | # because it was too generic | ||
| 54 | COMPATIBLE_MACHINE = "a^" | ||
| 55 | COMPATIBLE_MACHINE_libc-glibc_qoriq-ppc = ".*" | ||
