summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/ui/crumbs/hig.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py
index 93a4fbc2f4..4baf960a48 100644
--- a/bitbake/lib/bb/ui/crumbs/hig.py
+++ b/bitbake/lib/bb/ui/crumbs/hig.py
@@ -356,6 +356,15 @@ class AdvancedSettingDialog (CrumbsDialog):
356 data += ("SDK_MACHINE: " + self._get_sorted_value(self.configuration.curr_sdk_machine)) 356 data += ("SDK_MACHINE: " + self._get_sorted_value(self.configuration.curr_sdk_machine))
357 data += ("TOOLCHAIN_BUILD: " + self._get_sorted_value(self.configuration.toolchain_build)) 357 data += ("TOOLCHAIN_BUILD: " + self._get_sorted_value(self.configuration.toolchain_build))
358 data += ("IMAGE_FSTYPES: " + self._get_sorted_value(self.configuration.image_fstypes)) 358 data += ("IMAGE_FSTYPES: " + self._get_sorted_value(self.configuration.image_fstypes))
359 if self.enable_proxy:
360 data += ("ALL_PROXY: " + self._get_sorted_value(self.configuration.all_proxy))
361 data += ("HTTP_PROXY: " + self._get_sorted_value(self.configuration.http_proxy))
362 data += ("HTTPS_PROXY: " + self._get_sorted_value(self.configuration.https_proxy))
363 data += ("FTP_PROXY: " + self._get_sorted_value(self.configuration.ftp_proxy))
364 data += ("GIT_PROXY_HOST: " + self._get_sorted_value(self.configuration.git_proxy_host))
365 data += ("GIT_PROXY_PORT: " + self._get_sorted_value(self.configuration.git_proxy_port))
366 data += ("CVS_PROXY_HOST: " + self._get_sorted_value(self.configuration.cvs_proxy_host))
367 data += ("CVS_PROXY_PORT: " + self._get_sorted_value(self.configuration.cvs_proxy_port))
359 for key in self.configuration.extra_setting.keys(): 368 for key in self.configuration.extra_setting.keys():
360 data += (key + ": " + self._get_sorted_value(self.configuration.extra_setting[key])) 369 data += (key + ": " + self._get_sorted_value(self.configuration.extra_setting[key]))
361 return hashlib.md5(data).hexdigest() 370 return hashlib.md5(data).hexdigest()