diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-04-06 17:46:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-06 23:10:28 +0100 |
commit | 590a8159aa975db7c22879dddf47211136923feb (patch) | |
tree | 799ebd789851d059ec46b5e1df90a28e743f27f7 /bitbake | |
parent | a8f6001e0f910bcf60531fca1b1c5ce375390a76 (diff) | |
download | poky-590a8159aa975db7c22879dddf47211136923feb.tar.gz |
bitbake: toaster: stop bitbake server after the build
Bitbake server is used only during the build. There is no need
in keeping server running after the build.
Running bitbake -m in the subshell after the build should stop
the server.
(Bitbake rev: 062c68e3e7d00834118fe07ceb0899874be714ae)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/localhostbecontroller.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py index ed46636372..6d7f433f9f 100644 --- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py +++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py | |||
@@ -317,11 +317,13 @@ class LocalhostBEController(BuildEnvironmentController): | |||
317 | task = ':%s' % task | 317 | task = ':%s' % task |
318 | bbtargets += '%s%s ' % (target.target, task) | 318 | bbtargets += '%s%s ' % (target.target, task) |
319 | 319 | ||
320 | # run build with local bitbake | 320 | # run build with local bitbake. stop the server after the build. |
321 | log = os.path.join(builddir, 'toaster_ui.log') | 321 | log = os.path.join(builddir, 'toaster_ui.log') |
322 | self._shellcmd('TOASTER_BRBE="%s" BBSERVER="0.0.0.0:-1" ' | 322 | self._shellcmd(['(TOASTER_BRBE="%s" BBSERVER="0.0.0.0:-1" ' |
323 | '../bitbake/bin/bitbake %s -u toasterui ' | 323 | '../bitbake/bin/bitbake %s -u toasterui >>%s 2>&1;' |
324 | '>>%s 2>&1 &' % (brbe, bbtargets, log), builddir) | 324 | 'BITBAKE_UI="" BBSERVER=0.0.0.0:-1 %s -m)&' \ |
325 | % (brbe, bbtargets, log, bitbake)], builddir, | ||
326 | nowait=True) | ||
325 | 327 | ||
326 | logger.debug('localhostbecontroller: Build launched, exiting. ' | 328 | logger.debug('localhostbecontroller: Build launched, exiting. ' |
327 | 'Follow build logs at %s' % log) | 329 | 'Follow build logs at %s' % log) |