mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
bitbake: toaster: move to new bitbake xmlrpc default
The bitbake option "-t SERVERTYPE" was deprecated and can be removed since the desired XMLRPC listener now the default. The bitbake server port cannot be "-1" anymore and must be explicitly passed. There is a race condition for the bblock file to not only be created but to actually be populated, so a delay test loop is required (usually only one pass). The 'xmlrpcclient' is now the class that allows Toaster to for example kill builds. The events for populating the recipe parsing now either show only the final result or are skipped entiredly, so the progress calculator needs to be changed to not block on the parsing phase. [YOCTO #11851] (Bitbake rev: 2aa7ad38f760ec003fb18faa5aa0014cff191a7a) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
3bc3d26b46
commit
9d1faf1a6f
@@ -451,7 +451,7 @@ class Build(models.Model):
|
||||
recipes_to_parse = models.IntegerField(default=1)
|
||||
|
||||
# number of recipes parsed so far for this build
|
||||
recipes_parsed = models.IntegerField(default=0)
|
||||
recipes_parsed = models.IntegerField(default=1)
|
||||
|
||||
# number of repos to clone for this build
|
||||
repos_to_clone = models.IntegerField(default=1)
|
||||
|
||||
Reference in New Issue
Block a user