diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2015-07-09 10:35:26 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-12 22:55:41 +0100 |
commit | 95083b2699493b571dab73efa2c5a4e961fe874f (patch) | |
tree | 4b784367e24c1bce9328ecb03211c4b95ace197b | |
parent | 274389c5666ca4b843def48e2da20ad3f0b7bba9 (diff) | |
download | poky-95083b2699493b571dab73efa2c5a4e961fe874f.tar.gz |
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 <target>" does that now.
(From OE-Core rev: 30b109729a81097cc6cfa65148e0e9ae1a564d2c)
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/archiver.bbclass | 7 |
1 files changed, 7 insertions, 0 deletions
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 | |||
374 | addtask do_dumpdata | 374 | addtask do_dumpdata |
375 | addtask do_ar_recipe | 375 | addtask do_ar_recipe |
376 | addtask do_deploy_archives before do_build | 376 | addtask do_deploy_archives before do_build |
377 | |||
378 | addtask do_deploy_all_archives after do_deploy_archives | ||
379 | do_deploy_all_archives[recrdeptask] = "do_deploy_archives" | ||
380 | do_deploy_all_archives[recideptask] = "do_${BB_DEFAULT_TASK}" | ||
381 | do_deploy_all_archives() { | ||
382 | : | ||
383 | } | ||