summaryrefslogtreecommitdiffstats
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.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/configurator.py b/bitbake/lib/bb/ui/crumbs/configurator.py
index e7c524afce..6481608483 100644
--- a/bitbake/lib/bb/ui/crumbs/configurator.py
+++ b/bitbake/lib/bb/ui/crumbs/configurator.py
@@ -90,12 +90,14 @@ class Configurator(gobject.GObject):
90 pclass = getString('PACKAGE_CLASSES') 90 pclass = getString('PACKAGE_CLASSES')
91 if pclass and pclass != self.config.get('PACKAGE_CLASSES', ''): 91 if pclass and pclass != self.config.get('PACKAGE_CLASSES', ''):
92 self.config['PACKAGE_CLASSES'] = pclass 92 self.config['PACKAGE_CLASSES'] = pclass
93 fstypes = getString('IMAGE_FSTYPES')
94 if fstypes and fstypes != self.config.get('IMAGE_FSTYPES', ''):
95 self.config['IMAGE_FSTYPES'] = fstypes
93 96
94 self.orig_config = copy.deepcopy(self.config) 97 self.orig_config = copy.deepcopy(self.config)
95 98
96 def setLocalConfVar(self, var, val): 99 def setLocalConfVar(self, var, val):
97 if var in self.config: 100 self.config[var] = val
98 self.config[var] = val
99 101
100 def _loadLayerConf(self, path): 102 def _loadLayerConf(self, path):
101 self.bblayers = path 103 self.bblayers = path