blob: 70b8518304f2d4a9273c2e0392f98205dc805a03 [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 Williamsc124f4f2015-09-15 14:41:29 -05006LICENSE = "GPLv2"
Andrew Geissler82c905d2020-04-13 13:39:40 -05007LIC_FILES_CHKSUM = "file://tools/kgit;beginline=5;endline=9;md5=9c30e971d435e249624278c3e343e501"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008
9DEPENDS = "git-native"
10
Andrew Geisslerc926e172021-05-07 16:11:35 -050011SRCREV = "00dfcab64b85bcb61208724a1588662184ebdd59"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012PR = "r12"
13PV = "0.2+git${SRCPV}"
14
15inherit native
16
17SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git"
Andrew Geissler82c905d2020-04-13 13:39:40 -050018S = "${WORKDIR}/git"
Brad Bishop316dfdd2018-06-25 12:45:53 -040019UPSTREAM_CHECK_COMMITS = "1"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020
Andrew Geissler82c905d2020-04-13 13:39:40 -050021do_configure() {
22 :
23}
24
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025do_compile() {
26 :
27}
28
29do_install() {
Andrew Geissler82c905d2020-04-13 13:39:40 -050030 oe_runmake DESTDIR=${D}${bindir} install
Patrick Williamsc124f4f2015-09-15 14:41:29 -050031}