summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/bldcontrol/bbcontroller.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/bbcontroller.py b/bitbake/lib/toaster/bldcontrol/bbcontroller.py
index 3d98ad7e1e..ba009313e7 100644
--- a/bitbake/lib/toaster/bldcontrol/bbcontroller.py
+++ b/bitbake/lib/toaster/bldcontrol/bbcontroller.py
@@ -52,6 +52,9 @@ class BitbakeController(object):
52 def setVariable(self, name, value): 52 def setVariable(self, name, value):
53 return self._runCommand(["setVariable", name, value]) 53 return self._runCommand(["setVariable", name, value])
54 54
55 def getVariable(self, name):
56 return self._runCommand(["getVariable", name])
57
55 def build(self, targets, task = None): 58 def build(self, targets, task = None):
56 if task is None: 59 if task is None:
57 task = "build" 60 task = "build"