mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Rather than requiring each user to handle this individually, handle addto_recipe_sysroot in the core class. As well as preserving the sysroot directory, this also ensures the stamp is preserved rather than rerunning the task every time as currently happens. (From OE-Core rev: bf8b9858d9ccce27173d13938a83d249294cc473) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
492 B
BlitzBasic
25 lines
492 B
BlitzBasic
SUMMARY = "Helper utilities needed by the runqemu script"
|
|
LICENSE = "GPLv2"
|
|
RDEPENDS_${PN} = "qemu-native"
|
|
PR = "r1"
|
|
|
|
LIC_FILES_CHKSUM = "file://${WORKDIR}/tunctl.c;endline=4;md5=ff3a09996bc5fff6bc5d4e0b4c28f999"
|
|
|
|
SRC_URI = "file://tunctl.c"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
inherit native
|
|
|
|
do_compile() {
|
|
${CC} tunctl.c -o tunctl
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
install tunctl ${D}${bindir}/
|
|
}
|
|
|
|
DEPENDS += "qemu-native"
|
|
addtask addto_recipe_sysroot after do_populate_sysroot before do_build
|