diff options
| author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-08-12 15:38:22 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-15 09:49:11 +0100 |
| commit | 09ce78cc4fcc6619fb4f527a88d5bca72a8c3e24 (patch) | |
| tree | 9fd9e6fda33131a83589310c4c99400fab9411aa /bitbake/bin/bitbake-layers | |
| parent | 6f32cb2741f4602513fe04f1f45b708f2b7034fb (diff) | |
| download | poky-09ce78cc4fcc6619fb4f527a88d5bca72a8c3e24.tar.gz | |
bitbake-layers: extend show_layers
Make show_layers print layer name, path, and priority in a simple table
rather than just the value of BBLAYERS.
(Bitbake rev: 29afbf10c00b5ccdd8d2c063dda3f3e2b6aa1624)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin/bitbake-layers')
| -rwxr-xr-x | bitbake/bin/bitbake-layers | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-layers b/bitbake/bin/bitbake-layers index 9de5bbffcb..88fb8ea939 100755 --- a/bitbake/bin/bitbake-layers +++ b/bitbake/bin/bitbake-layers | |||
| @@ -103,7 +103,20 @@ class Commands(cmd.Cmd): | |||
| 103 | def do_show_layers(self, args): | 103 | def do_show_layers(self, args): |
| 104 | """show current configured layers""" | 104 | """show current configured layers""" |
| 105 | self.check_prepare_cooker() | 105 | self.check_prepare_cooker() |
| 106 | logger.plain(str(self.config_data.getVar('BBLAYERS', True))) | 106 | logger.plain('') |
| 107 | logger.plain("%s %s %s" % ("layer".ljust(20), "path".ljust(40), "priority")) | ||
| 108 | logger.plain('=' * 74) | ||
| 109 | layerdirs = str(self.config_data.getVar('BBLAYERS', True)).split() | ||
| 110 | for layerdir in layerdirs: | ||
| 111 | layername = '?' | ||
| 112 | layerpri = 0 | ||
| 113 | for layer, _, regex, pri in self.cooker.status.bbfile_config_priorities: | ||
| 114 | if regex.match(os.path.join(layerdir, 'test')): | ||
| 115 | layername = layer | ||
| 116 | layerpri = pri | ||
| 117 | break | ||
| 118 | |||
| 119 | logger.plain("%s %s %d" % (layername.ljust(20), layerdir.ljust(40), layerpri)) | ||
| 107 | 120 | ||
| 108 | def do_show_overlayed(self, args): | 121 | def do_show_overlayed(self, args): |
| 109 | """list overlayed recipes (where there is a recipe in another layer that has a higher layer priority) | 122 | """list overlayed recipes (where there is a recipe in another layer that has a higher layer priority) |
