summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/management
diff options
context:
space:
mode:
authorDavid Reyna <David.Reyna@windriver.com>2017-09-03 21:02:22 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-05 15:00:49 +0100
commit019f68981389c49a78fe78509417409adee7ef03 (patch)
tree9806ad6e7583ec7d6f741cc71c6fb92e97ae0dcb /bitbake/lib/toaster/orm/management
parentbdb1f7571ed539b89ce42268a81ab76d27133dd9 (diff)
downloadpoky-019f68981389c49a78fe78509417409adee7ef03.tar.gz
bitbake: toaster: recipe links broken for default layers
The default layers are missing the recipe link definitions in the fixture files, and because they are predefined they do not get the updated information from the Layer Index. [YOCTO #12006] (Bitbake rev: 2ff5592baf011de9c778d3c2481b8ed3912f1a4b) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/orm/management')
-rw-r--r--bitbake/lib/toaster/orm/management/commands/lsupdates.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/orm/management/commands/lsupdates.py b/bitbake/lib/toaster/orm/management/commands/lsupdates.py
index 54b4fab068..efc6b3a946 100644
--- a/bitbake/lib/toaster/orm/management/commands/lsupdates.py
+++ b/bitbake/lib/toaster/orm/management/commands/lsupdates.py
@@ -166,6 +166,8 @@ class Command(BaseCommand):
166 l.description = li['description'] 166 l.description = li['description']
167 167
168 if created: 168 if created:
169 # predefined layers in the fixtures (for example poky.xml)
170 # always preempt the Layer Index for these values
169 l.vcs_url = li['vcs_url'] 171 l.vcs_url = li['vcs_url']
170 l.vcs_web_url = li['vcs_web_url'] 172 l.vcs_web_url = li['vcs_web_url']
171 l.vcs_web_tree_base_url = li['vcs_web_tree_base_url'] 173 l.vcs_web_tree_base_url = li['vcs_web_tree_base_url']