diff options
author | Ross Burton <ross.burton@intel.com> | 2015-03-27 15:21:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-31 22:23:13 +0100 |
commit | a9025e876d2d9b7252016cbe4d2086484a8d0480 (patch) | |
tree | 7cc6c3d86f84db3000f4e5e86632f02118c9dc63 /meta/classes | |
parent | feb84ef42ac30f090c2d79108b50162cfd892dd5 (diff) | |
download | poky-a9025e876d2d9b7252016cbe4d2086484a8d0480.tar.gz |
linux-yocto: add kern-tools-native to kernel_metadata depends
The autobuilder failed like this:
temp/run.do_kernel_metadata.25242: line 165: createme: command not found
createme is provided by kern-tools-native. do_patch has a dependency on
kern-tools-native, but do_kernel_metadata runs before do_patch. So move the
dependency from do_patch to do_kernel_metadata, moving the statement from the
.inc to the class so it's alongside the task definition.
[ YOCTO #7531 ]
(From OE-Core rev: 4a0371847ff0c30d9b60db63559d89dddfcb009f)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 14551a23f2..a1fbb51e68 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -261,6 +261,7 @@ do_kernel_checkout[dirs] = "${S}" | |||
261 | 261 | ||
262 | addtask kernel_checkout before do_patch after do_unpack | 262 | addtask kernel_checkout before do_patch after do_unpack |
263 | addtask kernel_metadata after do_validate_branches before do_patch | 263 | addtask kernel_metadata after do_validate_branches before do_patch |
264 | do_kernel_metadata[depends] = "kern-tools-native:do_populate_sysroot" | ||
264 | 265 | ||
265 | do_kernel_configme[dirs] += "${S} ${B}" | 266 | do_kernel_configme[dirs] += "${S} ${B}" |
266 | do_kernel_configme() { | 267 | do_kernel_configme() { |