1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 13:29:49 +00:00

Introduce new param caches_array into Cache impl.

When using hob ui interface, we need extra cache fields.
We will save ui required extra cache fields into a separate
cache file. This patch introduce this caches_array parameter.
It will be used in the extra cache implementation (following patch).
Caches_array at least contains CoreRecipeInfo. If users need extra
cache fields support, such as 'hob', caches_array will contain
more relevant elements such as HobRecipeInfo.

(Bitbake rev: d50389ae692377c957afec7c846fc2ce2c070a09)

Signed-off-by: Liping Ke <liping.ke@intel.com>
This commit is contained in:
Liping Ke
2011-06-03 08:21:44 +08:00
committed by Richard Purdie
parent 43eb7d9563
commit b3c41b1f46
4 changed files with 57 additions and 14 deletions
+2
View File
@@ -28,6 +28,8 @@ import xmlrpclib
import logging
import Queue
extraCaches = ['bb.cache_extra:HobRecipeInfo']
class MainWindow (gtk.Window):
def __init__(self, taskmodel, handler, curr_mach=None, curr_distro=None):