diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2013-12-02 13:04:37 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-03 12:27:26 +0000 |
commit | baf77657191bd64d715af425e0aaa2223d641863 (patch) | |
tree | 2ef2bb593f1c04318605cca8b9466f82a703eaa5 /meta | |
parent | a17ffbdbb7d142a94ef842a32b749b18e2e7f0a1 (diff) | |
download | poky-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.bb | 6 |
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() { | |||
31 | do_bundle_initramfs() { | 31 | do_bundle_initramfs() { |
32 | : | 32 | : |
33 | } | 33 | } |
34 | |||
35 | do_deploy() { | ||
36 | : | ||
37 | } | ||
38 | |||
34 | do_bundle_initramfs[nostamp] = "1" | 39 | do_bundle_initramfs[nostamp] = "1" |
35 | addtask bundle_initramfs after do_compile | 40 | addtask bundle_initramfs after do_compile |
41 | addtask deploy after do_install | ||
36 | 42 | ||