mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 02:19:39 +01:00
There were some config fragment warnings that were being hidden
by virtue of being output while generating the full config versus
the ones that were generated during the configuration audit task.
This change does the following:
- Updates the kern-tools SRCREV to include changes that move
all kernel configuration warnings to the audit script
- Updates the meta SRCREV for linux-yocto to get updated
kernel configuration fragments that are warning-free. These
are duplicated configs, and other changes that have a net
result of no runtime changes.
(From OE-Core rev: 8e67d4dd1e1bc64a84791abc613e237e29dd2aaa)
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 = "364437739c45a5e771d1f7b3ac73c35f1328fd97"
|
|
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
|
|
}
|