summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/orm/models.py')
-rw-r--r--bitbake/lib/toaster/orm/models.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index 0443a4589d..a1119168dd 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -449,6 +449,19 @@ class Build(models.Model):
449 break 449 break
450 return has_images 450 return has_images
451 451
452 def has_image_targets(self):
453 """
454 Returns True if a build has any targets which were built from
455 image recipes.
456 """
457 targets = Target.objects.filter(build_id=self.id)
458 has_image_targets = False
459 for target in targets:
460 if target.is_image:
461 has_image_targets = True
462 break
463 return has_image_targets
464
452 def get_image_file_extensions(self): 465 def get_image_file_extensions(self):
453 """ 466 """
454 Get string of file name extensions for images produced by this build; 467 Get string of file name extensions for images produced by this build;