1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-01 13:09:50 +00:00

bitbake: toaster: Port All recipes, layers and machines to ToasterTables

Port of the main tables to the new ToasterTable widget.

(Bitbake rev: 6de539d5953b2dca2a9ed75556a59764337a194c)

Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Michael Wood
2015-05-11 18:51:28 +01:00
committed by Richard Purdie
parent 7f8c44771c
commit 23f5b009e0
13 changed files with 349 additions and 634 deletions
+11
View File
@@ -567,6 +567,17 @@ class Recipe(models.Model):
return self.file_path
def get_vcs_recipe_file_link_url(self):
return self.layer_version.get_vcs_file_link_url(self.file_path)
def get_description_or_summary(self):
if self.description:
return self.description
elif self.summary:
return self.summary
else:
return ""
class Meta:
unique_together = ("layer_version", "file_path")