mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 13:13:02 +01:00
The ability to merge two branches directly from a .scc file was dropped during the streamlining of the tools. As was pointed out by David Vincent <freesilicon@gmail.com>, there is once again a valid use case for this functionality, so we restore the capability. (From OE-Core rev: a0059ebbb52c659282e355664bba1a2fa282170e) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.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 = "c14440d4e7ae0160c260ed65c3e123be5dc97ae8"
|
|
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
|
|
}
|