summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/orm/models.py')
-rw-r--r--bitbake/lib/toaster/orm/models.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/orm/models.py b/bitbake/lib/toaster/orm/models.py
index 99cc695012..364b215814 100644
--- a/bitbake/lib/toaster/orm/models.py
+++ b/bitbake/lib/toaster/orm/models.py
@@ -843,6 +843,8 @@ class Layer_Version(models.Model):
843 dirpath = models.CharField(max_length=255, null = True, default = None) # LayerBranch.vcs_subdir 843 dirpath = models.CharField(max_length=255, null = True, default = None) # LayerBranch.vcs_subdir
844 priority = models.IntegerField(default = 0) # if -1, this is a default layer 844 priority = models.IntegerField(default = 0) # if -1, this is a default layer
845 845
846 project = models.ForeignKey('Project', null = True, default = None) # Set if this layer is project-specific; always set for imported layers, and project-set branches
847
846 # code lifted, with adaptations, from the layerindex-web application https://git.yoctoproject.org/cgit/cgit.cgi/layerindex-web/ 848 # code lifted, with adaptations, from the layerindex-web application https://git.yoctoproject.org/cgit/cgit.cgi/layerindex-web/
847 def _handle_url_path(self, base_url, path): 849 def _handle_url_path(self, base_url, path):
848 import re 850 import re
@@ -902,7 +904,7 @@ class Layer_Version(models.Model):
902 return sorted( 904 return sorted(
903 Layer_Version.objects.filter( layer__name = self.layer.name, up_branch__name = self.up_branch.name ), 905 Layer_Version.objects.filter( layer__name = self.layer.name, up_branch__name = self.up_branch.name ),
904 key = lambda x: _get_ls_priority(x.layer_source), 906 key = lambda x: _get_ls_priority(x.layer_source),
905 reverse = False) 907 reverse = True)
906 908
907 909
908 def __unicode__(self): 910 def __unicode__(self):