blob: 0dcf1281f04f1f4c66a0a67ad41f36496e0d8939 [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/"
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00006LICENSE = "GPL-2.0-only"
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 Geissler595f6302022-01-24 19:11:47 +000011SRCREV = "90598a5fae1172e3f7782a1b02f7b7518efd32c8"
12PV = "0.3+git${SRCPV}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013
14inherit native
15
Andrew Geissler595f6302022-01-24 19:11:47 +000016SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git;branch=master"
Andrew Geissler82c905d2020-04-13 13:39:40 -050017S = "${WORKDIR}/git"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018
Andrew Geissler82c905d2020-04-13 13:39:40 -050019do_configure() {
20 :
21}
22
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023do_compile() {
24 :
25}
26
27do_install() {
Andrew Geissler82c905d2020-04-13 13:39:40 -050028 oe_runmake DESTDIR=${D}${bindir} install
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029}