[oe-commits] [bitbake] 09/20: buildinfohelper: fix retrieval of targets

git at git.openembedded.org git at git.openembedded.org
Tue Jul 19 08:01:13 UTC 2016


rpurdie pushed a commit to branch master
in repository bitbake.

commit 1c0a689fdaae6469d4afb98583161073d32ea50b
Author: Elliot Smith <elliot.smith at intel.com>
AuthorDate: Tue Jul 12 15:54:47 2016 -0700

    buildinfohelper: fix retrieval of targets
    
    When buildinfohelper records the targets for a build, it looks
    up any existing targets for a build and creates them if they
    are not present. This is because in the case of Toaster-triggered
    builds, the Target objects have already been created (inside
    triggerBuild()) and don't need to be recreated; but in the case
    of cli builds, the Target objects have to be created by
    buildinfohelper.
    
    The issue is that the code for retrieving an existing target for
    a build only looks for Targets with a matching target and build,
    e.g. Targets for build X with target "core-image-minimal". But it
    is perfectly legitimate to call bitbake with a command like
    "bitbake core-image-minimal:do_populate_sdk
    core-image-minimal:do_populate_sdk_ext". In such a case, the
    code which looks for matching targets finds two objects, as it
    doesn't filter by task.
    
    Add the task into the filter for the Target so that only one
    Target object is be returned. Note that a command
    line like "bitbake recipe:task recipe:task" will still cause an
    error as bitbake doesn't de-duplicate the command line arguments
    and will run the recipe:task combination twice.
    
    Signed-off-by: Elliot Smith <elliot.smith at intel.com>
    Signed-off-by: bavery <brian.avery at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/ui/buildinfohelper.py | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/lib/bb/ui/buildinfohelper.py b/lib/bb/ui/buildinfohelper.py
index a5b2237..e1b59c3 100644
--- a/lib/bb/ui/buildinfohelper.py
+++ b/lib/bb/ui/buildinfohelper.py
@@ -201,6 +201,10 @@ class ORMWrapper(object):
 
     @staticmethod
     def get_or_create_targets(target_info):
+        """
+        NB get_or_create() is used here because for Toaster-triggered builds,
+        we already created the targets when the build was triggered.
+        """
         result = []
         for target in target_info['targets']:
             task = ''
@@ -210,13 +214,10 @@ class ORMWrapper(object):
                 task = task[3:]
             if task == 'build':
                 task = ''
-            obj, created = Target.objects.get_or_create(build=target_info['build'],
-                                                        target=target)
-            if created:
-                obj.is_image = False
-                if task:
-                    obj.task = task
-                obj.save()
+
+            obj, _ = Target.objects.get_or_create(build=target_info['build'],
+                                                  target=target,
+                                                  task=task)
             result.append(obj)
         return result
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list