diff options
| author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-06-29 19:37:38 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-05 13:36:50 +0100 |
| commit | 44db5d5d76e718e0b17c939c5e03d29e123386e8 (patch) | |
| tree | b9700d0c7d1f400ad5444eaacb6d0eb82caae798 | |
| parent | 07dbea44c76640ca484fbaeb00821eaf1739388d (diff) | |
| download | poky-44db5d5d76e718e0b17c939c5e03d29e123386e8.tar.gz | |
bitbake-layers: add show_overlayed action
Add a show_overlayed action to list overlayed recipes.
(Bitbake rev: f0c2175dc943160e45ebd72fc932dd16ee361bfb)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rwxr-xr-x | bitbake/bin/bitbake-layers | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake-layers b/bitbake/bin/bitbake-layers index 6b5ad5a38b..fced88ef35 100755 --- a/bitbake/bin/bitbake-layers +++ b/bitbake/bin/bitbake-layers | |||
| @@ -73,6 +73,16 @@ class Commands(cmd.Cmd): | |||
| 73 | def do_show_layers(self, args): | 73 | def do_show_layers(self, args): |
| 74 | logger.info(str(self.config_data.getVar('BBLAYERS', True))) | 74 | logger.info(str(self.config_data.getVar('BBLAYERS', True))) |
| 75 | 75 | ||
| 76 | def do_show_overlayed(self, args): | ||
| 77 | if self.cooker.overlayed: | ||
| 78 | logger.info('Overlayed recipes:') | ||
| 79 | for f in self.cooker.overlayed.iterkeys(): | ||
| 80 | logger.info('%s' % f) | ||
| 81 | for of in self.cooker.overlayed[f]: | ||
| 82 | logger.info(' %s' % of) | ||
| 83 | else: | ||
| 84 | logger.info('No overlayed recipes found') | ||
| 85 | |||
| 76 | def do_show_appends(self, args): | 86 | def do_show_appends(self, args): |
| 77 | if not self.cooker_data.appends: | 87 | if not self.cooker_data.appends: |
| 78 | logger.info('No append files found') | 88 | logger.info('No append files found') |
