mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 09:59:39 +01:00
Updating the kern-tools SRCREV to pick up the following fix:
When a feature is passed to the kernel configuration scripts, and that
feature is a directory name, it is a shortcut for:
$DIR/$DIR.scc
This expansion is not commonly used, and should be avoided. But for the
purposes of backwards compatibility, updateme can expand the feature into
a .scc file before passing it to the next set of configuration scripts.
(From OE-Core rev: bec0a48c34695827d70cbbde7795b5a56fc13d56)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
517 B
BlitzBasic
24 lines
517 B
BlitzBasic
DESCRIPTION = "Scripts and utilities for managing Yocto branched kernels."
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=d8d1d729a70cd5f52972f8884b80743d"
|
|
|
|
DEPENDS = "git-native guilt-native"
|
|
|
|
SRCREV = "fbcdcb8e23c38352b46235598f34d7b345f458f1"
|
|
PR = "r12"
|
|
PV = "0.1+git${SRCPV}"
|
|
|
|
inherit native
|
|
|
|
SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git;protocol=git"
|
|
S = "${WORKDIR}"
|
|
|
|
do_compile() {
|
|
:
|
|
}
|
|
|
|
do_install() {
|
|
cd ${S}/git
|
|
make DESTDIR=${D}${bindir} install
|
|
}
|