Files
poky/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
Bruce Ashfield db9b8bc9a3 kern-tools: update to the new repository
As the first of several changes to the kern-tools coupled to
the branch management in the yocto kernels the repository
is being renamed to it proper name. This change switches us to
that newly created repo.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-01-25 12:01:13 -08:00

30 lines
722 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"
PR = r10
PV = "0.1+git${SRCPV}"
inherit native
SRC_URI = "git://git.pokylinux.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
}