summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-03-11 15:06:58 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-19 20:58:11 +0000
commitb844a4292bdf364b3b56796f3b541c1d4a622850 (patch)
tree4dcb02dfb63725729e56a719357b9ddab3ca852a /bitbake/lib/bb/command.py
parent8852e51bdcb55002e666ab9d4476d98599fdfc67 (diff)
downloadpoky-b844a4292bdf364b3b56796f3b541c1d4a622850.tar.gz
bitbake: hob: some settings in Hob are not remembered
Some settings in Hob were not saved in Bitbake and they were not displayed correcty in Hob, because Hob used some other variables with the extension "_HOB". I have removed this, in order to have a consistency for the variables. ALso, I called a function to load the extra variables saved in .hob/template_default.hob. [YOCTO #3957] (Bitbake rev: 0f62a12ef3fa4daf8f3a289c984115302b75c23d) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 59336bbee7..3abdd0c649 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -205,13 +205,6 @@ class CommandsSync:
205 """ 205 """
206 return bb.utils.cpu_count() 206 return bb.utils.cpu_count()
207 207
208 def setConfFilter(self, command, params):
209 """
210 Set the configuration file parsing filter
211 """
212 filterfunc = params[0]
213 bb.parse.parse_py.ConfHandler.confFilters.append(filterfunc)
214
215 def matchFile(self, command, params): 208 def matchFile(self, command, params):
216 fMatch = params[0] 209 fMatch = params[0]
217 return command.cooker.matchFile(fMatch) 210 return command.cooker.matchFile(fMatch)