diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2015-03-31 14:59:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-31 22:30:06 +0100 |
commit | ce2573b96a165f6c8029632c19786efd658c75a2 (patch) | |
tree | ed243e24b2a66fb0ba8fd05e1bdd721f2e4475aa /bitbake/lib/toaster/bldcontrol | |
parent | e5a441c3ffc7a9a79f24f4beb51d8a2d55d3296d (diff) | |
download | poky-ce2573b96a165f6c8029632c19786efd658c75a2.tar.gz |
bitbake: Revert "toaster: machine not searchable in all builds/projects"
This reverts commit 1a86ed8f95649c5f5a3a66984ce36978d93b0e01.
Bug [YOCTO #7334] was incompletly fixed, and the proper fix is
not straightfoward. Consequently we revert the partial fix, as
a incomplete fix is worse than no fix.
(Bitbake rev: 3d838ddc2f1f92e2dd940e43c3467f6ba4ba043d)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol')
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/models.py b/bitbake/lib/toaster/bldcontrol/models.py index bfb25ee10a..02cfaf7086 100644 --- a/bitbake/lib/toaster/bldcontrol/models.py +++ b/bitbake/lib/toaster/bldcontrol/models.py | |||
@@ -106,7 +106,7 @@ class BuildRequest(models.Model): | |||
106 | (REQ_ARCHIVE, "archive"), | 106 | (REQ_ARCHIVE, "archive"), |
107 | ) | 107 | ) |
108 | 108 | ||
109 | search_allowed_fields = ("brtarget__target", "build__project__name", "build__machine") | 109 | search_allowed_fields = ("brtarget__target", "build__project__name") |
110 | 110 | ||
111 | project = models.ForeignKey(Project) | 111 | project = models.ForeignKey(Project) |
112 | build = models.OneToOneField(Build, null = True) # TODO: toasterui should set this when Build is created | 112 | build = models.OneToOneField(Build, null = True) # TODO: toasterui should set this when Build is created |