summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-11 16:16:51 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-11 16:16:51 +0000
commita72d49478e57b05b99cb1b3beec62a9e79a24e7a (patch)
tree021c96a611cc1b7071d525cebfcac512ac8140de /bitbake
parent20afb21a375b6a5f0d4ff6e269eeee121d6f087a (diff)
downloadpoky-a72d49478e57b05b99cb1b3beec62a9e79a24e7a.tar.gz
bitbake/fetch2: Add some debug output so its clear when PREMIRRORS, upstream and MIRRORS are being used
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 06facbcf46..f4e9ea96fa 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -886,6 +886,7 @@ class Fetch(object):
886 if not m.need_update(u, ud, self.d): 886 if not m.need_update(u, ud, self.d):
887 localpath = ud.localpath 887 localpath = ud.localpath
888 elif m.try_premirror(u, ud, self.d): 888 elif m.try_premirror(u, ud, self.d):
889 logger.debug(1, "Trying PREMIRRORS")
889 mirrors = mirror_from_string(bb.data.getVar('PREMIRRORS', self.d, True)) 890 mirrors = mirror_from_string(bb.data.getVar('PREMIRRORS', self.d, True))
890 localpath = try_mirrors(self.d, ud, mirrors, False) 891 localpath = try_mirrors(self.d, ud, mirrors, False)
891 892
@@ -894,6 +895,7 @@ class Fetch(object):
894 895
895 if not localpath and m.need_update(u, ud, self.d): 896 if not localpath and m.need_update(u, ud, self.d):
896 try: 897 try:
898 logger.debug(1, "Trying Upstream")
897 m.download(u, ud, self.d) 899 m.download(u, ud, self.d)
898 if hasattr(m, "build_mirror_data"): 900 if hasattr(m, "build_mirror_data"):
899 m.build_mirror_data(u, ud, self.d) 901 m.build_mirror_data(u, ud, self.d)
@@ -904,6 +906,7 @@ class Fetch(object):
904 # Remove any incomplete fetch 906 # Remove any incomplete fetch
905 if os.path.isfile(ud.localpath): 907 if os.path.isfile(ud.localpath):
906 bb.utils.remove(ud.localpath) 908 bb.utils.remove(ud.localpath)
909 logger.debug(1, "Trying MIRRORS")
907 mirrors = mirror_from_string(bb.data.getVar('MIRRORS', self.d, True)) 910 mirrors = mirror_from_string(bb.data.getVar('MIRRORS', self.d, True))
908 localpath = try_mirrors (self.d, ud, mirrors) 911 localpath = try_mirrors (self.d, ud, mirrors)
909 912