mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
There are valid reasons to build repositories without meta data present and there are times when this is an error. This change adds sanity tests to the build process to detect missing meta data and throw an informative error message. Sanity checking is only triggered from recipes (linux-yocto) that always require meta data to be present. Other recipes are not impacted and can auto-generate meta data as required. Without this change the build process suceeds, but incorrect meta data will be used (with no user knowledge), which is not the desired behaviour. (From OE-Core rev: adf9f92e2f8f6cc3deba72a194ded85e160ad9e3) 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 = "ab49d8e48b7e66d1b4f924385d65d062d25e44f7"
|
|
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
|
|
}
|