From ee250eb7e4be2c2964bbeeada93dfff7b8d5e72f Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Tue, 26 Aug 2014 15:36:29 +0100 Subject: bitbake: toaster: update the bldcontrol to the new orm models We update the build controller application to make proper use of the bitbake specification in project settings. Added heuristic to detect when the meta* layers and bitbake are checked out from Yocto Project poky, and use a single git checkout. Building without a proper oe-init-build-env is not yet supported. (Bitbake rev: 9eafe14956013f5af39b68fc93e1b03e7ea1f5c2) Signed-off-by: Alexandru DAMIAN Signed-off-by: Richard Purdie --- bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/toaster/bldcontrol/management') diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py b/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py index fa8c1a9906..8efe8e62bc 100644 --- a/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py +++ b/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py @@ -43,7 +43,7 @@ class Command(NoArgsCommand): # set up the buid environment with the needed layers print "Build %s, Environment %s" % (br, bec.be) - bec.setLayers(br.brlayer_set.all()) + bec.setLayers(br.brbitbake_set.all(), br.brlayer_set.all()) # get the bb server running bbctrl = bec.getBBController() -- cgit v1.2.3-54-g00ecf