cooker: switch to new universe target rather than world

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.

(Bitbake rev: 26b0c538ad4f677e0d45a66484c2dca073459282)

Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Joshua Lock 2011-06-30 23:02:54 -07:00 committed by Richard Purdie
parent 97e0beb393
commit 22d8fb1fc3
1 changed files with 2 additions and 2 deletions

View File

@ -594,9 +594,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: