]> code.ossystems Code Review - openembedded-core.git/commitdiff
linux-dummy: catch up with image.bbclass changes
authorKoen Kooi <koen@dominion.thruhere.net>
Mon, 2 Dec 2013 12:04:37 +0000 (13:04 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 3 Dec 2013 12:26:51 +0000 (12:26 +0000)
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

Signed-off-by: Koen Kooi <koen.kooi@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-kernel/linux/linux-dummy.bb

index 8a211da9e2805e824256e23765263bf3625b51d1..1c837c9263cb3ecc899d4c5bda9260ce68ec547b 100644 (file)
@@ -31,6 +31,12 @@ do_install() {
 do_bundle_initramfs() {
         :
 }
+
+do_deploy() {
+       :
+}
+
 do_bundle_initramfs[nostamp] = "1"
 addtask bundle_initramfs after do_compile
+addtask deploy after do_install