build-recipe-list: build universe instead of world

Building world means recipes that are excluded from world build for whatever
reason get skipped from the manifests, which isn't useful.  Instead building
universe and pass -k so that the expected dependency failures are not fatal.

(From OE-Core rev: 2d798f9f56fbd7cd20de4b797a476ad24c214ff3)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton
2018-03-12 16:38:58 +00:00
committed by Richard Purdie
parent a5c274b451
commit 215293c51e

View File

@@ -45,7 +45,7 @@ def generate_recipe_list():
# doing bitbake distrodata
for machine in machine_list:
os.system('MACHINE='+ machine + ' bitbake world -c distrodata')
os.system('MACHINE='+ machine + ' bitbake -k universe -c distrodata')
shutil.copy('tmp/log/distrodata.csv', 'distrodata/' + fnformat % machine)
for machine in machine_list: