summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/tinfoil.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/tinfoil.py')
-rw-r--r--bitbake/lib/bb/tinfoil.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/bitbake/lib/bb/tinfoil.py b/bitbake/lib/bb/tinfoil.py
index 2a51526187..456cbf80be 100644
--- a/bitbake/lib/bb/tinfoil.py
+++ b/bitbake/lib/bb/tinfoil.py
@@ -173,6 +173,14 @@ class TinfoilCookerAdapter:
173 attrvalue = self.tinfoil.run_command('getBbFilePriority') or {} 173 attrvalue = self.tinfoil.run_command('getBbFilePriority') or {}
174 elif name == 'pkg_dp': 174 elif name == 'pkg_dp':
175 attrvalue = self.tinfoil.run_command('getDefaultPreference') or {} 175 attrvalue = self.tinfoil.run_command('getDefaultPreference') or {}
176 elif name == 'fn_provides':
177 attrvalue = self.tinfoil.run_command('getRecipeProvides') or {}
178 elif name == 'packages':
179 attrvalue = self.tinfoil.run_command('getRecipePackages') or {}
180 elif name == 'packages_dynamic':
181 attrvalue = self.tinfoil.run_command('getRecipePackagesDynamic') or {}
182 elif name == 'rproviders':
183 attrvalue = self.tinfoil.run_command('getRProviders') or {}
176 else: 184 else:
177 raise AttributeError("%s instance has no attribute '%s'" % (self.__class__.__name__, name)) 185 raise AttributeError("%s instance has no attribute '%s'" % (self.__class__.__name__, name))
178 186