mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 20:39:39 +01:00
Bumping yocto-kernel-tools to version v0.3, which comprises the following commits:
90598a5 tools: Makefile: add missing install file
330f9fa kgit-config: fix file mode
22b55cd kgit-config: cleanup error message
1e2a233 kgit-config: fix the "not found" message
e7fcb9a kgit-config: trim trailing whitespace
3cd14ce kgit-config: BSP template and auto meta-data creation
e56620c tools: introduce kgit-config
969b888 buckets: update to v5.14+
d220b06 Kconfiglib: add support for bare 'modules' keyword
(From OE-Core rev: ee1d3b4cd0c7a615cbd5ddf46433c470dc43c669)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 88439875530bf36e301dbba12de5cf0dc664ba51)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
805 B
BlitzBasic
31 lines
805 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 = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://tools/kgit;beginline=5;endline=9;md5=9c30e971d435e249624278c3e343e501"
|
|
|
|
DEPENDS = "git-native"
|
|
|
|
SRCREV = "90598a5fae1172e3f7782a1b02f7b7518efd32c8"
|
|
PV = "0.3+git${SRCPV}"
|
|
|
|
inherit native
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git;branch=master"
|
|
S = "${WORKDIR}/git"
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
do_configure() {
|
|
:
|
|
}
|
|
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake DESTDIR=${D}${bindir} install
|
|
}
|