From abcd9796cbe4d62268b87f8be420ab84ff5f8947 Mon Sep 17 00:00:00 2001 From: David Reyna Date: Tue, 17 Mar 2015 20:13:09 -0700 Subject: bitbake: toaster: machine not searchable in all builds/projects Add "build__machine" to searchable fields. [YOCTO #7334] (Bitbake rev: 1a86ed8f95649c5f5a3a66984ce36978d93b0e01) Signed-off-by: David Reyna Signed-off-by: Richard Purdie --- bitbake/lib/toaster/bldcontrol/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake') diff --git a/bitbake/lib/toaster/bldcontrol/models.py b/bitbake/lib/toaster/bldcontrol/models.py index 02cfaf7086..bfb25ee10a 100644 --- a/bitbake/lib/toaster/bldcontrol/models.py +++ b/bitbake/lib/toaster/bldcontrol/models.py @@ -106,7 +106,7 @@ class BuildRequest(models.Model): (REQ_ARCHIVE, "archive"), ) - search_allowed_fields = ("brtarget__target", "build__project__name") + search_allowed_fields = ("brtarget__target", "build__project__name", "build__machine") project = models.ForeignKey(Project) build = models.OneToOneField(Build, null = True) # TODO: toasterui should set this when Build is created -- cgit v1.2.3-54-g00ecf