[oe-commits] [bitbake] branch master updated: bitbake-layers: show-layers: disable parsing

git at git.openembedded.org git at git.openembedded.org
Thu Jun 2 21:15:27 UTC 2016


rpurdie pushed a commit to branch master
in repository bitbake.

The following commit(s) were added to refs/heads/master by this push:
       new  a609ad7   bitbake-layers: show-layers: disable parsing
a609ad7 is described below

commit a609ad7d560260a8d50dfa197cd960f496c5da73
Author: Paul Eggleton <paul.eggleton at linux.intel.com>
AuthorDate: Tue May 31 11:16:58 2016 +1200

    bitbake-layers: show-layers: disable parsing
    
    We don't need to parse all recipes just to show the list of layers,
    since that comes straight from the configuration, so save a bit of time
    by not doing so. (A minor regression that came in with the the
    bitbake-layers refactoring).
    
    Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bblayers/query.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bblayers/query.py b/lib/bblayers/query.py
index b8c817b..0a49681 100644
--- a/lib/bblayers/query.py
+++ b/lib/bblayers/query.py
@@ -481,7 +481,7 @@ NOTE: .bbappend files can impact the dependencies.
             logger.plain("%s %s %s" % (f, keyword, best_realfn))
 
     def register_commands(self, sp):
-        self.add_command(sp, 'show-layers', self.do_show_layers)
+        self.add_command(sp, 'show-layers', self.do_show_layers, parserecipes=False)
 
         parser_show_overlayed = self.add_command(sp, 'show-overlayed', self.do_show_overlayed)
         parser_show_overlayed.add_argument('-f', '--filenames', help='instead of the default formatting, list filenames of higher priority recipes with the ones they overlay indented underneath', action='store_true')

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list