diff options
author | Sujith H <sujith.h@gmail.com> | 2016-04-06 17:46:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-06 23:10:28 +0100 |
commit | f5aa97067f0955b6be5e69b5859d1f3c5624c2da (patch) | |
tree | 108dd8130dbaaf1e10956d97950f62dbf83da62f /bitbake/lib/toaster/bldcontrol | |
parent | d6992a8d69cc896b4e6713fef464b946a40c4f15 (diff) | |
download | poky-f5aa97067f0955b6be5e69b5859d1f3c5624c2da.tar.gz |
bitbake: toaster: bldcontrol Add forceShutDown function to BitbakeController
Add forceShutDown function to BitbakeController class. This function
provides a mechanism to cancel the build from toaster. An API which
can be used safely to cancel build and hence shutdown running bitbake
server.
[YOCTO #6787]
(Bitbake rev: 89dc2ee8f5b7255538082ce4f6cb5277839875a8)
Signed-off-by: Sujith H <sujith.h@gmail.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol')
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/bbcontroller.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/bbcontroller.py b/bitbake/lib/toaster/bldcontrol/bbcontroller.py index 058e490fc1..0f7b66d2e6 100644 --- a/bitbake/lib/toaster/bldcontrol/bbcontroller.py +++ b/bitbake/lib/toaster/bldcontrol/bbcontroller.py | |||
@@ -63,6 +63,9 @@ class BitbakeController(object): | |||
63 | task = "build" | 63 | task = "build" |
64 | return self._runCommand(["buildTargets", targets, task]) | 64 | return self._runCommand(["buildTargets", targets, task]) |
65 | 65 | ||
66 | def forceShutDown(self): | ||
67 | return self._runCommand(["stateForceShutdown"]) | ||
68 | |||
66 | 69 | ||
67 | 70 | ||
68 | def getBuildEnvironmentController(**kwargs): | 71 | def getBuildEnvironmentController(**kwargs): |