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:20:01 +0000
commitcaac8938fe2b46828d7d8234ecc52f837df4da03 (patch)
tree6ef700333b1f96430dabf3b80b63cfeb7cb1cab3 /meta/recipes-kernel/kern-tools
parent2f7f4ca89dd8a078bafb71a0be22edbdb7aff3ee (diff)
downloadpoky-caac8938fe2b46828d7d8234ecc52f837df4da03.tar.gz
kern-tools-native: use more common S value and oe_runmake
(From OE-Core rev: 83a552d0aea7f789b3a5a7ff96f3d3a5e346cc2c) 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 @@
1SUMMARY = "Tools for managing Yocto Project style branched kernels" 1SUMMARY = "Tools for managing Yocto Project style branched kernels"
2LICENSE = "GPLv2" 2LICENSE = "GPLv2"
3LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=9c30e971d435e249624278c3e343e501" 3LIC_FILES_CHKSUM = "file://tools/kgit;beginline=5;endline=9;md5=9c30e971d435e249624278c3e343e501"
4 4
5DEPENDS = "git-native" 5DEPENDS = "git-native"
6 6
@@ -11,14 +11,17 @@ PV = "0.2+git${SRCPV}"
11inherit native 11inherit native
12 12
13SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git" 13SRC_URI = "git://git.yoctoproject.org/yocto-kernel-tools.git"
14S = "${WORKDIR}" 14S = "${WORKDIR}/git"
15UPSTREAM_CHECK_COMMITS = "1" 15UPSTREAM_CHECK_COMMITS = "1"
16 16
17do_configure() {
18 :
19}
20
17do_compile() { 21do_compile() {
18 : 22 :
19} 23}
20 24
21do_install() { 25do_install() {
22 cd ${S}/git 26 oe_runmake DESTDIR=${D}${bindir} install
23 make DESTDIR=${D}${bindir} install
24} 27}