diff options
author | Yeoh Ee Peng <ee.peng.yeoh@intel.com> | 2019-09-19 18:11:10 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-19 20:30:35 +0100 |
commit | 0a46b9dd9ca4069c3975215f2257632e492350a0 (patch) | |
tree | 86993f929d662372cf0024d82ed05c49a0ebff8b | |
parent | 7f2803d1aa29e3dd9374a1e1557084027835908c (diff) | |
download | poky-0a46b9dd9ca4069c3975215f2257632e492350a0.tar.gz |
bitbake: bitbake-layers: show-recipes: Enable bare output
Currently, show-recipes will append "(skipped)" marker to recipes which
were skipped due these recipes does not satisfied the configurations.
Example: $ bitbake-layers show-recipes -r
ace
backport-iwlwifi
core-image-rt (skipped)
core-image-rt-sdk (skipped)
core-image-tiny
Add -b/--bare to enable output names without "(skipped)" marker.
Example: $ bitbake-layers show-recipes -r -b
ace
backport-iwlwifi
core-image-rt
core-image-rt-sdk
core-image-tiny
(Bitbake rev: 87796e580cd160a535eb5fb9e31846a7cf1a249e)
Signed-off-by: Yeoh Ee Peng <ee.peng.yeoh@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bblayers/query.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bitbake/lib/bblayers/query.py b/bitbake/lib/bblayers/query.py index a100f663e1..7db49c8e2a 100644 --- a/bitbake/lib/bblayers/query.py +++ b/bitbake/lib/bblayers/query.py | |||
@@ -46,7 +46,7 @@ layer, with the preferred version first. Note that skipped recipes that | |||
46 | are overlayed will also be listed, with a " (skipped)" suffix. | 46 | are overlayed will also be listed, with a " (skipped)" suffix. |
47 | """ | 47 | """ |
48 | 48 | ||
49 | items_listed = self.list_recipes('Overlayed recipes', None, True, args.same_version, args.filenames, False, True, None, None) | 49 | items_listed = self.list_recipes('Overlayed recipes', None, True, args.same_version, args.filenames, False, True, None, False, None) |
50 | 50 | ||
51 | # Check for overlayed .bbclass files | 51 | # Check for overlayed .bbclass files |
52 | classes = collections.defaultdict(list) | 52 | classes = collections.defaultdict(list) |
@@ -112,9 +112,9 @@ skipped recipes will also be listed, with a " (skipped)" suffix. | |||
112 | title = 'Matching recipes:' | 112 | title = 'Matching recipes:' |
113 | else: | 113 | else: |
114 | title = 'Available recipes:' | 114 | title = 'Available recipes:' |
115 | self.list_recipes(title, args.pnspec, False, False, args.filenames, args.recipes_only, args.multiple, args.layer, inheritlist) | 115 | self.list_recipes(title, args.pnspec, False, False, args.filenames, args.recipes_only, args.multiple, args.layer, args.bare, inheritlist) |
116 | 116 | ||
117 | def list_recipes(self, title, pnspec, show_overlayed_only, show_same_ver_only, show_filenames, show_recipes_only, show_multi_provider_only, selected_layer, inherits): | 117 | def list_recipes(self, title, pnspec, show_overlayed_only, show_same_ver_only, show_filenames, show_recipes_only, show_multi_provider_only, selected_layer, bare, inherits): |
118 | if inherits: | 118 | if inherits: |
119 | bbpath = str(self.tinfoil.config_data.getVar('BBPATH')) | 119 | bbpath = str(self.tinfoil.config_data.getVar('BBPATH')) |
120 | for classname in inherits: | 120 | for classname in inherits: |
@@ -145,7 +145,7 @@ skipped recipes will also be listed, with a " (skipped)" suffix. | |||
145 | 145 | ||
146 | def print_item(f, pn, ver, layer, ispref): | 146 | def print_item(f, pn, ver, layer, ispref): |
147 | if not selected_layer or layer == selected_layer: | 147 | if not selected_layer or layer == selected_layer: |
148 | if f in skiplist: | 148 | if not bare and f in skiplist: |
149 | skipped = ' (skipped)' | 149 | skipped = ' (skipped)' |
150 | else: | 150 | else: |
151 | skipped = '' | 151 | skipped = '' |
@@ -503,6 +503,7 @@ NOTE: .bbappend files can impact the dependencies. | |||
503 | parser_show_recipes.add_argument('-m', '--multiple', help='only list where multiple recipes (in the same layer or different layers) exist for the same recipe name', action='store_true') | 503 | parser_show_recipes.add_argument('-m', '--multiple', help='only list where multiple recipes (in the same layer or different layers) exist for the same recipe name', action='store_true') |
504 | parser_show_recipes.add_argument('-i', '--inherits', help='only list recipes that inherit the named class(es) - separate multiple classes using , (without spaces)', metavar='CLASS', default='') | 504 | parser_show_recipes.add_argument('-i', '--inherits', help='only list recipes that inherit the named class(es) - separate multiple classes using , (without spaces)', metavar='CLASS', default='') |
505 | parser_show_recipes.add_argument('-l', '--layer', help='only list recipes from the selected layer', default='') | 505 | parser_show_recipes.add_argument('-l', '--layer', help='only list recipes from the selected layer', default='') |
506 | parser_show_recipes.add_argument('-b', '--bare', help='output just names without the "(skipped)" marker', action='store_true') | ||
506 | parser_show_recipes.add_argument('pnspec', nargs='*', help='optional recipe name specification (wildcards allowed, enclose in quotes to avoid shell expansion)') | 507 | parser_show_recipes.add_argument('pnspec', nargs='*', help='optional recipe name specification (wildcards allowed, enclose in quotes to avoid shell expansion)') |
507 | 508 | ||
508 | parser_show_appends = self.add_command(sp, 'show-appends', self.do_show_appends) | 509 | parser_show_appends = self.add_command(sp, 'show-appends', self.do_show_appends) |