From 30b109729a81097cc6cfa65148e0e9ae1a564d2c Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Thu, 9 Jul 2015 10:35:26 +0200 Subject: archiver.bbclass: add do_deploy_all_archives When working specifically on source archiving, it is useful to trigger that for all recipes required by something like an image recipe, without actually having to build that. "bitbake -c deploy_all_archives " does that now. Signed-off-by: Patrick Ohly Signed-off-by: Richard Purdie --- meta/classes/archiver.bbclass | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass index 7b5274df89..d908d162b1 100644 --- a/meta/classes/archiver.bbclass +++ b/meta/classes/archiver.bbclass @@ -374,3 +374,10 @@ addtask do_ar_configured after do_unpack_and_patch addtask do_dumpdata addtask do_ar_recipe addtask do_deploy_archives before do_build + +addtask do_deploy_all_archives after do_deploy_archives +do_deploy_all_archives[recrdeptask] = "do_deploy_archives" +do_deploy_all_archives[recideptask] = "do_${BB_DEFAULT_TASK}" +do_deploy_all_archives() { + : +} -- cgit 1.2.3-korg