mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 22:09:39 +01:00
Add scc to the list of installed programs, as it's required by updateme Signed-off-by: Joshua Lock <josh@linux.intel.com>
30 lines
701 B
BlitzBasic
30 lines
701 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 = r5
|
|
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 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
|
|
}
|