mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
Recent kernels broke the ability of kconfiglib to parse the Kconfig files and offer reasons why a symbol may not be set. To address this issue, we update to Kconfiglib2 and adjust the symbol_why script to work with the new API. We also tweak the kconf_check script to allow the specification of a list of option as "non-hardware". This allows a BSP to inhibit warnings on options that it knows are mismatched for a valid reason (i.e. -tiny kernels using common fragments with known missing dependencies). (From OE-Core rev: 6acfe7d9e431923124c5c4e743f39f9d7aea97c5) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
513 B
BlitzBasic
25 lines
513 B
BlitzBasic
SUMMARY = "Tools for managing Yocto Project style branched kernels"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=a6c2fa8aef1bda400e2828845ba0d06c"
|
|
|
|
DEPENDS = "git-native"
|
|
|
|
SRCREV = "d6529f86fc5bcb3514953ff9fa2f51a3fbf03a0f"
|
|
PR = "r12"
|
|
PV = "0.2+git${SRCPV}"
|
|
|
|
inherit native
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git"
|
|
S = "${WORKDIR}"
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
cd ${S}/git
|
|
make DESTDIR=${D}${bindir} install
|
|
}
|