1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 13:29:49 +00:00

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 <David.Reyna@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
David Reyna
2017-07-11 14:56:09 -07:00
committed by Richard Purdie
parent 36568b9e1e
commit a25ece2d77
2 changed files with 4 additions and 4 deletions
@@ -13,12 +13,12 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='build',
name='repos_cloned',
field=models.IntegerField(default=0),
field=models.IntegerField(default=1),
),
migrations.AddField(
model_name='build',
name='repos_to_clone',
field=models.IntegerField(default=1),
field=models.IntegerField(default=1), # (default off)
),
]