blob: ea33732a3e7d49e586dfbd82dc9b36381eeccb96 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Tools for managing Yocto Project style branched kernels"
2LICENSE = "GPLv2"
Andrew Geissler82c905d2020-04-13 13:39:40 -05003LIC_FILES_CHKSUM = "file://tools/kgit;beginline=5;endline=9;md5=9c30e971d435e249624278c3e343e501"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05004
5DEPENDS = "git-native"
6
Andrew Geissler706d5aa2021-02-12 15:55:30 -06007SRCREV = "df4390b18a500a1a7d4695e1856971f8e36ce517"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008PR = "r12"
9PV = "0.2+git${SRCPV}"
10
11inherit native
12
13SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git"
Andrew Geissler82c905d2020-04-13 13:39:40 -050014S = "${WORKDIR}/git"
Brad Bishop316dfdd2018-06-25 12:45:53 -040015UPSTREAM_CHECK_COMMITS = "1"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
Andrew Geissler82c905d2020-04-13 13:39:40 -050017do_configure() {
18 :
19}
20
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021do_compile() {
22 :
23}
24
25do_install() {
Andrew Geissler82c905d2020-04-13 13:39:40 -050026 oe_runmake DESTDIR=${D}${bindir} install
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027}