mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

Where recipes use S = ${WORKDIR}, change them to set UNPACKDIR to a subdir of WORKDIR and make S point at this instead. I've chosen not to force S into any standard UNPACKDIR we may pick in future just so the S = UNPACKDIR case is clearly visible by the directory naming under WORKDIR as that should aid usability. (From OE-Core rev: d9328e3b0b062f0621de3d114584b44f384a1c02) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
42 lines
930 B
BlitzBasic
42 lines
930 B
BlitzBasic
SUMMARY = "QEMU wrapper script"
|
|
HOMEPAGE = "http://qemu.org"
|
|
LICENSE = "MIT"
|
|
|
|
S = "${WORKDIR}/sources"
|
|
UNPACKDIR = "${S}"
|
|
|
|
DEPENDS += "qemu-native"
|
|
|
|
inherit qemu
|
|
|
|
do_populate_sysroot[depends] = ""
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir_crossscripts}/
|
|
|
|
qemu_binary=${@qemu_target_binary(d)}
|
|
qemu_options='${QEMU_OPTIONS} -E LD_LIBRARY_PATH=$D${libdir}:$D${base_libdir}'
|
|
|
|
cat >> ${D}${bindir_crossscripts}/${MLPREFIX}qemuwrapper << EOF
|
|
#!/bin/sh
|
|
# Wrapper script to run binaries under qemu user-mode emulation
|
|
set -x
|
|
|
|
if [ ${@bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', 'True', 'False', d)} = False -a "${PN}" != "nativesdk-qemuwrapper-cross" ]; then
|
|
echo "qemuwrapper: qemu usermode is not supported"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
$qemu_binary $qemu_options "\$@"
|
|
EOF
|
|
|
|
chmod +x ${D}${bindir_crossscripts}/${MLPREFIX}qemuwrapper
|
|
}
|
|
|
|
SYSROOT_DIRS += "${bindir_crossscripts}"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
BBCLASSEXTEND = "nativesdk"
|