All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] cache.py: print debug info when EXCLUDE_FROM_WORLD
@ 2014-06-06 14:35 Robert Yang
  2014-06-06 14:35 ` [PATCH 1/1] " Robert Yang
  0 siblings, 1 reply; 2+ messages in thread
From: Robert Yang @ 2014-06-06 14:35 UTC (permalink / raw)
  To: bitbake-devel

The following changes since commit 66d5be204fd339cc84a0ae92d3923a8c1e6f1389:

  bitbake: bitbake: show wildcard appends for bitbake-layers (2014-06-06 10:33:19 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib rbt/exworld
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=rbt/exworld

Robert Yang (1):
  cache.py: print debug info when EXCLUDE_FROM_WORLD

 bitbake/lib/bb/cache.py |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

-- 
1.7.10.4



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

* [PATCH 1/1] cache.py: print debug info when EXCLUDE_FROM_WORLD
  2014-06-06 14:35 [PATCH 0/1] cache.py: print debug info when EXCLUDE_FROM_WORLD Robert Yang
@ 2014-06-06 14:35 ` Robert Yang
  0 siblings, 0 replies; 2+ messages in thread
From: Robert Yang @ 2014-06-06 14:35 UTC (permalink / raw)
  To: bitbake-devel

This gives us an easy way to find out which recipes have been excluded
from world when there are many layers.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 bitbake/lib/bb/cache.py |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 38e9148..936829b 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -232,7 +232,9 @@ class CoreRecipeInfo(RecipeInfoCommon):
 
         # Collect files we may need for possible world-dep
         # calculations
-        if not self.not_world:
+        if self.not_world:
+            logger.debug(1, "EXCLUDE FROM WORLD: %s", fn)
+        else:
             cachedata.possible_world.append(fn)
 
         # create a collection of all targets for sanity checking
-- 
1.7.10.4



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

end of thread, other threads:[~2014-06-06 15:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-06 14:35 [PATCH 0/1] cache.py: print debug info when EXCLUDE_FROM_WORLD Robert Yang
2014-06-06 14:35 ` [PATCH 1/1] " Robert Yang

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.