mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 18:32:20 +02:00
(From OE-Core rev: c0a1128a1f1fa2b86ba1cb97d9ff17f5a7a76e59) Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
51 lines
914 B
BlitzBasic
51 lines
914 B
BlitzBasic
SUMMARY = "QEMU wrapper script"
|
|
HOMEPAGE = "http://qemu.org"
|
|
LICENSE = "MIT"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
DEPENDS += "qemu-native"
|
|
|
|
inherit qemu
|
|
|
|
do_populate_sysroot[depends] = ""
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir_crossscripts}/
|
|
|
|
echo "#!/bin/sh" > ${D}${bindir_crossscripts}/qemuwrapper
|
|
qemu_binary=${@qemu_target_binary(d)}
|
|
qemu_options='${QEMU_OPTIONS}'
|
|
echo "$qemu_binary $qemu_options \"\$@\"" >> ${D}${bindir_crossscripts}/qemuwrapper
|
|
fallback_qemu_bin=
|
|
case $qemu_binary in
|
|
"qemu-i386")
|
|
fallback_qemu_bin=qemu-x86_64
|
|
;;
|
|
"qemu-x86_64")
|
|
fallback_qemu_bin=qemu-i386
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
if [ -n "$fallback_qemu_bin" ]; then
|
|
|
|
cat >> ${D}${bindir_crossscripts}/qemuwrapper << EOF
|
|
rc=\$?
|
|
if [ \$rc = 255 ]; then
|
|
$fallback_qemu_bin "\$@"
|
|
rc=\$?
|
|
fi
|
|
exit \$rc
|
|
EOF
|
|
|
|
fi
|
|
|
|
chmod +x ${D}${bindir_crossscripts}/qemuwrapper
|
|
}
|
|
|
|
SYSROOT_DIRS += "${bindir_crossscripts}"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|