From a25ece2d77f28e71a71913ea25391bcbc8fa37e0 Mon Sep 17 00:00:00 2001 From: David Reyna Date: Tue, 11 Jul 2017 14:56:09 -0700 Subject: bitbake: toaster: set clone progress default to off Set the clone progress to be off by default for the benefit of command line projects and 'Local Yocto' builds. For Toaster managed projects that do use the clone feature the clone progress status is already explicitly set by the existing code and thus displayed. [YOCTO #11744] (Bitbake rev: d25a3088150b2a277242027c12becdeb88c45517) Signed-off-by: David Reyna Signed-off-by: Richard Purdie --- bitbake/lib/toaster/orm/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bitbake/lib/toaster/orm/models.py') diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py index e9182c56e7..05cc5a83b1 100644 --- a/bitbake/lib/toaster/orm/models.py +++ b/bitbake/lib/toaster/orm/models.py @@ -456,8 +456,8 @@ class Build(models.Model): # number of repos to clone for this build repos_to_clone = models.IntegerField(default=1) - # number of repos cloned so far for this build - repos_cloned = models.IntegerField(default=0) + # number of repos cloned so far for this build (default off) + repos_cloned = models.IntegerField(default=1) @staticmethod def get_recent(project=None): -- cgit v1.2.3-54-g00ecf