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.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
# 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: