summaryrefslogtreecommitdiffstats
path: root/scripts/lib/checklayer/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/checklayer/__init__.py')
-rw-r--r--scripts/lib/checklayer/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/lib/checklayer/__init__.py b/scripts/lib/checklayer/__init__.py
index 288c457822..2618416fab 100644
--- a/scripts/lib/checklayer/__init__.py
+++ b/scripts/lib/checklayer/__init__.py
@@ -56,9 +56,11 @@ def _get_layer_collections(layer_path, lconf=None, data=None):
56 priority = ldata.getVar('BBFILE_PRIORITY_%s' % name) 56 priority = ldata.getVar('BBFILE_PRIORITY_%s' % name)
57 pattern = ldata.getVar('BBFILE_PATTERN_%s' % name) 57 pattern = ldata.getVar('BBFILE_PATTERN_%s' % name)
58 depends = ldata.getVar('LAYERDEPENDS_%s' % name) 58 depends = ldata.getVar('LAYERDEPENDS_%s' % name)
59 compat = ldata.getVar('LAYERSERIES_COMPAT_%s' % name)
59 collections[name]['priority'] = priority 60 collections[name]['priority'] = priority
60 collections[name]['pattern'] = pattern 61 collections[name]['pattern'] = pattern
61 collections[name]['depends'] = depends 62 collections[name]['depends'] = depends
63 collections[name]['compat'] = compat
62 64
63 return collections 65 return collections
64 66