[oe-commits] Laurentiu Palcu : add qemuwrapper-cross recipe

git at git.openembedded.org git at git.openembedded.org
Wed Feb 6 09:38:28 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: faaa5e7fd4353b73289f163d9f601cf0869698f3
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=faaa5e7fd4353b73289f163d9f601cf0869698f3

Author: Laurentiu Palcu <laurentiu.palcu at intel.com>
Date:   Thu Jan 31 10:04:57 2013 +0200

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 <laurentiu.palcu at intel.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 .../recipes-devtools/qemu/qemuwrapper-cross_1.0.bb |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

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
+}





More information about the Openembedded-commits mailing list