mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 21:52:39 +02:00
Fixes [YOCTO #1261] Updating the SRCREV to pickup some branch creation fixes that were causing an invalid branch name to be used on a repository that couldn't support it (i.e. standard/base on a 2.6.34). With this the 2.6.34 and 3.0 -rt branches will build. (From OE-Core rev: e1df34c9d4614adc04528b73a8860e973c5db54d) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
777 B
BlitzBasic
31 lines
777 B
BlitzBasic
DESCRIPTION = "Scripts and utilities for managing Yocto branched kernels."
|
|
LICENSE = "GPL"
|
|
LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=e2bf4415f3d843f43d2e22b0d91a6fee"
|
|
|
|
DEPENDS = "git-native guilt-native"
|
|
|
|
SRCREV = "f5a915c277a37ba5949b4c0778356189e7dd9ec0"
|
|
PR = r10
|
|
PV = "0.1+git${SRCPV}"
|
|
|
|
inherit native
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git;protocol=git"
|
|
S = "${WORKDIR}"
|
|
|
|
kern_tools_LIST = kgit kgit-init kgit-meta \
|
|
kgit-checkpoint kgit-clean \
|
|
generate_cfg kconf_check configme \
|
|
createme updateme patchme get_defconfig scc
|
|
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${bindir}
|
|
for s in ${kern_tools_LIST}; do
|
|
install -m 0755 ${S}/git/tools/$s ${D}${bindir}
|
|
done
|
|
}
|