diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-21 13:50:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-21 13:52:17 +0000 |
commit | 15de188692d2572d897799424e2a22eab24c78e2 (patch) | |
tree | cecfe49f891b7dfc296c41bc300a190ca6730134 /meta/recipes-kernel | |
parent | b99419ff4c1b5ac1e4acd34d95fffd3ac5458bad (diff) | |
download | poky-15de188692d2572d897799424e2a22eab24c78e2.tar.gz |
kernel-devsrc: Ensure we have a dependency on the actual source
Tthe kernel populate_sysroot can come from sstate, we need the full
source here. We therefore depend on the configure task which isn't
covered by sstate to ensure we get the right set of files.
(From OE-Core rev: c3598cf720e04ab27ab5d2817c09f2496b677560)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/linux/kernel-devsrc.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/kernel-devsrc.bb b/meta/recipes-kernel/linux/kernel-devsrc.bb index 9fb761b46b..dbb3a5c581 100644 --- a/meta/recipes-kernel/linux/kernel-devsrc.bb +++ b/meta/recipes-kernel/linux/kernel-devsrc.bb | |||
@@ -16,6 +16,8 @@ inherit module-base | |||
16 | # We need the kernel to be staged (unpacked, patched and configured) before | 16 | # We need the kernel to be staged (unpacked, patched and configured) before |
17 | # we can grab the source and make the kernel-devsrc package | 17 | # we can grab the source and make the kernel-devsrc package |
18 | do_install[depends] += "virtual/kernel:do_populate_sysroot" | 18 | do_install[depends] += "virtual/kernel:do_populate_sysroot" |
19 | # Need the source, not just the output of populate_sysroot | ||
20 | do_install[depends] += "virtual/kernel:do_configure" | ||
19 | 21 | ||
20 | # There's nothing to do here, except install the source where we can package it | 22 | # There's nothing to do here, except install the source where we can package it |
21 | do_fetch[noexec] = "1" | 23 | do_fetch[noexec] = "1" |