mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 15:32:27 +02:00
LICENSE and LIC_FILES_CHKSUM apply to the sources specified by SRC_URI, not to the recipe itself. As such a license declaration for a source-less recipe makes little sense. The LICENSE declaration is mandatory, but LIC_FILES_CHKSUM can be removed in such cases. Remove the LIC_FILES_CHKSUM declarations from all recipes that do not need it. CC: Paul Eggleton <paul.eggleton@linux.intel.com> (From OE-Core rev: b18fa5f2f2f46afc6fdc58f4d29679dea9c36c43) Signed-off-by: Olaf Mandel <o.mandel@menlosystems.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
46 lines
824 B
BlitzBasic
46 lines
824 B
BlitzBasic
SUMMARY = "QEMU wrapper script"
|
|
LICENSE = "MIT"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
inherit qemu
|
|
|
|
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"
|