generic-poky/meta/packages/kern-tools/kern-tools-native_git.bb
Bruce Ashfield 55011c1f4b kern_tools: add updateme and patchme
Adding new kern_tools to allow the compilation of a meta series
and the patching of a kernel tree.

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2010-08-09 17:20:36 +01:00

30 lines
697 B
BlitzBasic

DESCRIPTION = "Scripts and utilities for managing Wind River kernels."
LICENSE = "GPL"
LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=e2bf4415f3d843f43d2e22b0d91a6fee"
DEPENDS = "git-native"
PR = r4
PV = "0.1+git${SRCPV}"
inherit native
SRC_URI = "git://git.pokylinux.org/wr-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
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
}