summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2013-06-20 13:19:42 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-20 13:26:57 +0100
commit01f9d1b338d561213b5136bb3bd087e56eafbab7 (patch)
tree0462c21659df705dceafef7bdb2622fa123e0e0e /bitbake/lib/bb/ui/crumbs/hobeventhandler.py
parent64eda3e058860ce5f152b2d31bb855d7614e92d1 (diff)
downloadpoky-01f9d1b338d561213b5136bb3bd087e56eafbab7.tar.gz
bitbake: bitbake & hob: modify some commands and call them from hob
This patch adds a new command to create an extra configuration file, in order to create it from Hob. Also, it calls the enable/disable data tracking when needed. Modified the prefiles and postfiles variables because the cooker expects some lists. (Bitbake rev: 92393701adcfa181a1090e3632bc6df7ee7852e6) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hobeventhandler.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
index d060bc0b42..8fd989b6c9 100644
--- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
+++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py
@@ -454,7 +454,9 @@ class HobHandler(gobject.GObject):
454 return " ".join(ret) 454 return " ".join(ret)
455 455
456 def set_var_in_file(self, var, val, default_file=None): 456 def set_var_in_file(self, var, val, default_file=None):
457 self.runCommand(["enableDataTracking"])
457 self.server.runCommand(["setVarFile", var, val, default_file]) 458 self.server.runCommand(["setVarFile", var, val, default_file])
459 self.runCommand(["disableDataTracking"])
458 460
459 def get_parameters(self): 461 def get_parameters(self):
460 # retrieve the parameters from bitbake 462 # retrieve the parameters from bitbake