The code called by do_rootfs explicitly needs the code obtained during do_unpack. If built from sstate, it might not be present so we ensure it is by adding an explicit dependency. This fixes build failures when building from sstate.
Signed-off-by: Richard Purdie <[email protected]> --- diff --git a/meta/recipes-core/images/build-appliance-image.bb b/meta/recipes-core/images/build-appliance-image.bb index 80cbbec..47be541 100644 --- a/meta/recipes-core/images/build-appliance-image.bb +++ b/meta/recipes-core/images/build-appliance-image.bb @@ -68,6 +68,8 @@ fakeroot do_populate_poky_src () { IMAGE_PREPROCESS_COMMAND += "do_populate_poky_src; " +addtask rootfs after do_unpack + python () { # Ensure we run these usually noexec tasks d.delVarFlag("do_fetch", "noexec") _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
