[bitbake-devel] [PATCH 08/10] cooker: switch to new universe target rather than world

Joshua Lock josh at linux.intel.com
Fri Jul 1 06:02:54 UTC 2011


When the caller doesn't specify a pkgs list we want to generate the tree of
all available packages. To do so use the new universe target list.

Signed-off-by: Joshua Lock <josh at linux.intel.com>
---
 lib/bb/cooker.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 13e898e..6682551 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -624,9 +624,9 @@ class BBCooker:
         Generate a dependency tree of buildable targets
         Generate an event with the result
         """
-        # if the caller hasn't specified a pkgs list default to world
+        # if the caller hasn't specified a pkgs list default to universe
         if not len(pkgs):
-            pkgs = ['world']
+            pkgs = ['universe']
         # if inherited_class passed ensure all recipes which inherit the
         # specified class are included in pkgs
         if klass:
-- 
1.7.5.4





More information about the bitbake-devel mailing list