]> code.ossystems Code Review - openembedded-core.git/commitdiff
build-recipe-list: build universe instead of world
authorRoss Burton <ross.burton@intel.com>
Mon, 12 Mar 2018 16:38:58 +0000 (16:38 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 12 Mar 2018 22:46:34 +0000 (15:46 -0700)
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>
scripts/distro/build-recipe-list.py

index 407debaa76a3ef73cc7167a489f9703ccaeaaf74..3f5f7c2fcc97a3cbdee4726de553814b72d818eb 100755 (executable)
@@ -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: