From patchwork Tue Feb 5 09:34:56 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/8] add qemuwrapper-cross recipe Date: Tue, 05 Feb 2013 09:34:56 -0000 From: Laurentiu Palcu X-Patchwork-Id: 44059 Message-Id: To: openembedded-core@lists.openembedded.org 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 --- .../recipes-devtools/qemu/qemuwrapper-cross_1.0.bb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb 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 0000000..dc16047 --- /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 +}