summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache_extra.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cache_extra.py')
-rw-r--r--bitbake/lib/bb/cache_extra.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cache_extra.py b/bitbake/lib/bb/cache_extra.py
index 9e38a439e8..83f4959d6c 100644
--- a/bitbake/lib/bb/cache_extra.py
+++ b/bitbake/lib/bb/cache_extra.py
@@ -35,6 +35,12 @@ class HobRecipeInfo(RecipeInfoCommon):
35 # such as (bb_cache.dat, bb_extracache_hob.dat) 35 # such as (bb_cache.dat, bb_extracache_hob.dat)
36 cachefile = "bb_extracache_" + classname +".dat" 36 cachefile = "bb_extracache_" + classname +".dat"
37 37
38 # override this member with the list of extra cache fields
39 # that this class will provide
40 cachefields = ['summary', 'license', 'section',
41 'description', 'homepage', 'bugtracker',
42 'prevision', 'files_info']
43
38 def __init__(self, filename, metadata): 44 def __init__(self, filename, metadata):
39 45
40 self.summary = self.getvar('SUMMARY', metadata) 46 self.summary = self.getvar('SUMMARY', metadata)