summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/localhostbecontroller.py')
-rw-r--r--bitbake/lib/toaster/bldcontrol/localhostbecontroller.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
index 92d9ac54d6..00228e9ef0 100644
--- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -287,6 +287,9 @@ class LocalhostBEController(BuildEnvironmentController):
287 # set variables 287 # set variables
288 for var in variables: 288 for var in variables:
289 bbctrl.setVariable(var.name, var.value) 289 bbctrl.setVariable(var.name, var.value)
290 if var.name == 'TOASTER_BRBE':
291 bbctrl.triggerEvent('bb.event.MetadataEvent("SetBRBE", "%s")' \
292 % var.value)
290 293
291 # Add 'toaster' and 'buildhistory' to INHERIT variable 294 # Add 'toaster' and 'buildhistory' to INHERIT variable
292 inherit = {item.strip() for item in bbctrl.getVariable('INHERIT').split()} 295 inherit = {item.strip() for item in bbctrl.getVariable('INHERIT').split()}