blob: dea7b65a7ca8bd6a2ee5bc74e07716706153ab3a [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Tools for managing Yocto Project style branched kernels"
Andrew Geissler90fd73c2021-03-05 15:25:55 -06002DESCRIPTION = "Powerful set of tools or managing Yocto Linux kernel sources \
3and configuration data. You can use these tools to make a single configuration \
4change, apply multiple patches, or work with your own kernel sources."
5HOMEPAGE = "https://www.yoctoproject.org/"
Patrick Williams03907ee2022-05-01 06:28:52 -05006LICENSE = "GPL-2.0-only & MIT"
7LIC_FILES_CHKSUM = "\
8 file://tools/kgit;beginline=5;endline=9;md5=9c30e971d435e249624278c3e343e501 \
9 file://Kconfiglib/LICENSE.txt;md5=712177a72a3937909543eda3ad1bfb7c \
10"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011
12DEPENDS = "git-native"
13
Andrew Geissler87f5cff2022-09-30 13:13:31 -050014SRCREV = "ba600ef61a85966596126a6e8d936971905e8749"
Andrew Geissler595f6302022-01-24 19:11:47 +000015PV = "0.3+git${SRCPV}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
17inherit native
18
Andrew Geissler595f6302022-01-24 19:11:47 +000019SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git;branch=master"
Andrew Geissler82c905d2020-04-13 13:39:40 -050020S = "${WORKDIR}/git"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021
Andrew Geissler82c905d2020-04-13 13:39:40 -050022do_configure() {
23 :
24}
25
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026do_compile() {
27 :
28}
29
30do_install() {
Andrew Geissler82c905d2020-04-13 13:39:40 -050031 oe_runmake DESTDIR=${D}${bindir} install
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032}