All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Minor fix for bitbake-layers
@ 2016-05-30 23:16 Paul Eggleton
  2016-05-30 23:16 ` [PATCH 1/1] bitbake-layers: show-layers: disable parsing Paul Eggleton
  0 siblings, 1 reply; 2+ messages in thread
From: Paul Eggleton @ 2016-05-30 23:16 UTC (permalink / raw)
  To: bitbake-devel

The following changes since commit d830dccf948d188492cecfcf2ff053f31740dc21:

  classes/base.bbclass: Fix missing getVarFlag parameter (2016-05-24 15:55:01 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib paule/bb-bitbake-layers-fix
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=paule/bb-bitbake-layers-fix

Paul Eggleton (1):
  bitbake-layers: show-layers: disable parsing

 lib/bblayers/query.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.5.5



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] bitbake-layers: show-layers: disable parsing
  2016-05-30 23:16 [PATCH 0/1] Minor fix for bitbake-layers Paul Eggleton
@ 2016-05-30 23:16 ` Paul Eggleton
  0 siblings, 0 replies; 2+ messages in thread
From: Paul Eggleton @ 2016-05-30 23:16 UTC (permalink / raw)
  To: bitbake-devel

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@linux.intel.com>
---
 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 b5b98f7..91c98c6 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')
-- 
2.5.5



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-05-30 23:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-30 23:16 [PATCH 0/1] Minor fix for bitbake-layers Paul Eggleton
2016-05-30 23:16 ` [PATCH 1/1] bitbake-layers: show-layers: disable parsing Paul Eggleton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.