aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/configurator.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/configurator.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/configurator.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/configurator.py b/bitbake/lib/bb/ui/crumbs/configurator.py
index 587a6ff129..e558c955b3 100644
--- a/bitbake/lib/bb/ui/crumbs/configurator.py
+++ b/bitbake/lib/bb/ui/crumbs/configurator.py
@@ -99,6 +99,14 @@ class Configurator(gobject.GObject):
else:
self.config['INCOMPATIBLE_LICENSE'] = ""
+ # Non-standard, namespaces, variables for GUI preferences
+ toolchain = getString('HOB_BUILD_TOOLCHAIN')
+ if toolchain and toolchain != self.config.get('HOB_BUILD_TOOLCHAIN', ''):
+ self.config['HOB_BUILD_TOOLCHAIN'] = toolchain
+ header = getString('HOB_BUILD_TOOLCHAIN_HEADERS')
+ if header and header != self.config.get('HOB_BUILD_TOOLCHAIN_HEADERS', ''):
+ self.config['HOB_BUILD_TOOLCHAIN_HEADERS'] = header
+
self.orig_config = copy.deepcopy(self.config)
def setLocalConfVar(self, var, val):