mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 19:09:41 +01:00
As reported in https://bugzilla.yoctoproject.org/show_bug.cgi?id=12563, the regex that matches valid CONFIG_ options was missing some of the ones in net/netfilter/ipvs/Kconfig, and hence triggering invalid option warnings. By dropping the trailing space on the regex, we'll cover all the cases for valid option. (From OE-Core rev: 461a2f54751ca18e17f897b10d6c3c47dab1733a) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.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=9c30e971d435e249624278c3e343e501"
|
|
|
|
DEPENDS = "git-native"
|
|
|
|
SRCREV = "bb6df0ef2365689cd3df6f76a8838cddae0d9343"
|
|
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
|
|
}
|