blob: 8eff00821ad6773f3449d3f4aab8831c9b3ae585 [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
Patrick Williams39653562024-03-01 08:54:02 -060012DEPENDS += "git-replacement-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013
Patrick Williamsac13d5f2023-11-24 18:59:46 -060014SRCREV = "7160ebe8b865dd6028aef278efa219433db93f7e"
Andrew Geissler5082cc72023-09-11 08:41:39 -040015PV = "0.3+git"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
17inherit native
18
Andrew Geissler028142b2023-05-05 11:29:21 -050019SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git;branch=master;protocol=https"
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}