mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 20:23:04 +01:00
Integrating the following commit: Author: Bruce Ashfield <bruce.ashfield@gmail.com> Date: Wed Oct 16 23:34:04 2024 -0400 spp: allow inputs to be tagged for audit files can have a specifier "optional" or "required" which follows the input file and is separated by a : We need to adjust our routines to check for the specifier and split it out accordingly. (From OE-Core rev: d5881f4cf09f82b31e731fafa96ab9ad5f55b17d) 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 = "df5de61e6e52a24b7851b68cb8dd1e226ac1fb69"
|
|
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
|
|
}
|