From: Laurentiu Palcu Date: Thu, 31 Jan 2013 08:04:57 +0000 (+0200) Subject: add qemuwrapper-cross recipe X-Git-Tag: 2015-4~7698 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=faaa5e7fd4353b73289f163d9f601cf0869698f3;p=openembedded-core.git add qemuwrapper-cross recipe This will just install a wrapper script in STAGING_BINDIR_CROSS that will execute the proper qemu user binary for the current target. [YOCTO #2599] Signed-off-by: Laurentiu Palcu Signed-off-by: Saul Wold --- diff --git a/meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb b/meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb new file mode 100644 index 0000000000..dc16047451 --- /dev/null +++ b/meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb @@ -0,0 +1,14 @@ +DESCRIPTION = "Qemu wrapper script" +LICENSE = "MIT" +PR = "r0" +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" + +inherit qemu + +do_install () { + install -d ${STAGING_BINDIR_CROSS} + + echo "#!/bin/sh" > ${STAGING_BINDIR_CROSS}/qemuwrapper + echo exec env ${@qemu_target_binary(d)} \"\$@\" >> ${STAGING_BINDIR_CROSS}/qemuwrapper + chmod +x ${STAGING_BINDIR_CROSS}/qemuwrapper +}