summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/kern-tools
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2020-02-06 12:35:46 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-02-08 13:19:56 +0000
commit83a552d0aea7f789b3a5a7ff96f3d3a5e346cc2c (patch)
tree97a02c1dcb7743a6409a867f95a0a4a087645d18 /meta/recipes-kernel/kern-tools
parentfa964575f9e00d8530563e61075992c5b69df137 (diff)
downloadopenembedded-core-83a552d0aea7f789b3a5a7ff96f3d3a5e346cc2c.tar.gz
kern-tools-native: use more common S value and oe_runmake
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/kern-tools')
-rw-r--r--meta/recipes-kernel/kern-tools/kern-tools-native_git.bb11
1 files changed, 7 insertions, 4 deletions
diff --git a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
index 3f9cfe7fe5..f263421234 100644
--- a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
+++ b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb
@@ -1,6 +1,6 @@
SUMMARY = "Tools for managing Yocto Project style branched kernels"
LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=9c30e971d435e249624278c3e343e501"
+LIC_FILES_CHKSUM = "file://tools/kgit;beginline=5;endline=9;md5=9c30e971d435e249624278c3e343e501"
DEPENDS = "git-native"
@@ -11,14 +11,17 @@ PV = "0.2+git${SRCPV}"
inherit native
SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git"
-S = "${WORKDIR}"
+S = "${WORKDIR}/git"
UPSTREAM_CHECK_COMMITS = "1"
+do_configure() {
+ :
+}
+
do_compile() {
:
}
do_install() {
- cd ${S}/git
- make DESTDIR=${D}${bindir} install
+ oe_runmake DESTDIR=${D}${bindir} install
}