mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 03:33:02 +01:00
Konstantin Aladyshev <aladyshev22@gmail.com> reported that the kern-tools require git functionality that was introduced in git versions greater than the minimum project requirements. In particular: commit 923a9de418b3ca8592c3 [kgit-s2q: don't run verication hooks] uses the --no-verify flag to prevent local git hooks from running and breaking patching or introducing security issues from the host configuration. To ensure that we have a new enough git available for the tools, we update our DEPENDS to git-native-replacement, and the version available in oe-core will be built and used instead of the host provided version. (From OE-Core rev: 6c2ae2346db061a37506b3b5dca20914a7b29fca) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
885 B
BlitzBasic
33 lines
885 B
BlitzBasic
SUMMARY = "Tools for managing Yocto Project style branched kernels"
|
|
DESCRIPTION = "Powerful set of tools or managing Yocto Linux kernel sources \
|
|
and configuration data. You can use these tools to make a single configuration \
|
|
change, apply multiple patches, or work with your own kernel sources."
|
|
HOMEPAGE = "https://www.yoctoproject.org/"
|
|
LICENSE = "GPL-2.0-only & MIT"
|
|
LIC_FILES_CHKSUM = "\
|
|
file://tools/kgit;beginline=5;endline=9;md5=9c30e971d435e249624278c3e343e501 \
|
|
file://Kconfiglib/LICENSE.txt;md5=712177a72a3937909543eda3ad1bfb7c \
|
|
"
|
|
|
|
DEPENDS += "git-replacement-native"
|
|
|
|
SRCREV = "7160ebe8b865dd6028aef278efa219433db93f7e"
|
|
PV = "0.3+git"
|
|
|
|
inherit native
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git;branch=master;protocol=https"
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_configure() {
|
|
:
|
|
}
|
|
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake DESTDIR=${D}${bindir} install
|
|
}
|