summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/management/commands/lsupdates.py
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-21 16:51:07 +0100
commit372f72f2ee5f6d7126d3dc22bd3940e5eccea351 (patch)
treec00eee55023ea8f4c3a3652d75b2e7867a889b00 /bitbake/lib/toaster/orm/management/commands/lsupdates.py
parent17b4f4e7319b95f001f2a6269881d7516ac99fee (diff)
downloadpoky-372f72f2ee5f6d7126d3dc22bd3940e5eccea351.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: b408dfae3685494ae34417e72c586b9eb0ddace9) 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/commands/lsupdates.py')
-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 68c6c423d8..482908d483 100644
--- a/bitbake/lib/toaster/orm/management/commands/lsupdates.py
+++ b/bitbake/lib/toaster/orm/management/commands/lsupdates.py
@@ -160,6 +160,8 @@ class Command(NoArgsCommand):
160 l.description = li['description'] 160 l.description = li['description']
161 161
162 if created: 162 if created:
163 # predefined layers in the fixtures (for example poky.xml)
164 # always preempt the Layer Index for these values
163 l.vcs_url = li['vcs_url'] 165 l.vcs_url = li['vcs_url']
164 l.vcs_web_url = li['vcs_web_url'] 166 l.vcs_web_url = li['vcs_web_url']
165 l.vcs_web_tree_base_url = li['vcs_web_tree_base_url'] 167 l.vcs_web_tree_base_url = li['vcs_web_tree_base_url']