mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 18:39:40 +01:00
We need to avoid using shared/common directories for any files that are part of specific build, since permissions issues in multi user environments will cause issues. Integrating the following commit to solve the issue: scc: move unused patch queue under output dir (From OE-Core rev: cad65cc0eef2e06cb5ae08062ffae7a4d43a51ad) (From OE-Core rev: e57f861496ed07aca8785a53971b34c99a4d64bd) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
484 B
BlitzBasic
24 lines
484 B
BlitzBasic
SUMMARY = "Tools for managing Yocto Project style branched kernels"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=a6c2fa8aef1bda400e2828845ba0d06c"
|
|
|
|
DEPENDS = "git-native"
|
|
|
|
SRCREV = "85564e69555b713c2759d58ec5ade54424d051d8"
|
|
PR = "r12"
|
|
PV = "0.2+git${SRCPV}"
|
|
|
|
inherit native
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git"
|
|
S = "${WORKDIR}"
|
|
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
cd ${S}/git
|
|
make DESTDIR=${D}${bindir} install
|
|
}
|