summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2013-12-02 13:04:37 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-03 12:27:26 +0000
commitbaf77657191bd64d715af425e0aaa2223d641863 (patch)
tree2ef2bb593f1c04318605cca8b9466f82a703eaa5 /meta
parenta17ffbdbb7d142a94ef842a32b749b18e2e7f0a1 (diff)
downloadpoky-baf77657191bd64d715af425e0aaa2223d641863.tar.gz
linux-dummy: catch up with image.bbclass changes
image.bbclass now depends on virtual/kernel:do_deploy, so add a task for that. This fixes errors like this: ERROR: Task do_build in /build/linaro/build/meta-linaro/meta-linaro/recipes-linaro/images/linaro-image-lng.bb depends upon non-existent task do_deploy in /build/linaro/build/openembedded-core/meta/recipes-kernel/linux/linux-dummy.bb (From OE-Core rev: 26d07f2a5bef42a113c9c81f2b5701b4f3d10d47) Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-kernel/linux/linux-dummy.bb6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-dummy.bb b/meta/recipes-kernel/linux/linux-dummy.bb
index 8a211da9e2..1c837c9263 100644
--- a/meta/recipes-kernel/linux/linux-dummy.bb
+++ b/meta/recipes-kernel/linux/linux-dummy.bb
@@ -31,6 +31,12 @@ do_install() {
31do_bundle_initramfs() { 31do_bundle_initramfs() {
32 : 32 :
33} 33}
34
35do_deploy() {
36 :
37}
38
34do_bundle_initramfs[nostamp] = "1" 39do_bundle_initramfs[nostamp] = "1"
35addtask bundle_initramfs after do_compile 40addtask bundle_initramfs after do_compile
41addtask deploy after do_install
36 42