bitbake/fetch2:Fetch Make using the fn based cache optional

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-02-07 21:12:51 +00:00
parent d4b4b48add
commit 500c66337c
1 changed files with 4 additions and 3 deletions

View File

@ -774,7 +774,7 @@ class FetchMethod(object):
return "%s-%s" % (key, bb.data.getVar("PN", d, True) or "")
class Fetch(object):
def __init__(self, urls, d):
def __init__(self, urls, d, cache = True):
if len(urls) == 0:
urls = d.getVar("SRC_URI", True).split()
self.urls = urls
@ -782,14 +782,15 @@ class Fetch(object):
self.ud = {}
fn = bb.data.getVar('FILE', d, True)
if fn in urldata_cache:
if cache and fn in urldata_cache:
self.ud = urldata_cache[fn]
for url in urls:
if url not in self.ud:
self.ud[url] = FetchData(url, d)
urldata_cache[fn] = self.ud
if cache:
urldata_cache[fn] = self.ud
def localpath(self, url):
if url not in self.urls: