summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/command.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-13 17:31:54 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-14 08:20:38 +0100
commit7663a520612203db35145609a8ff3fd80de4149a (patch)
tree7b26dd111b828926eaccb36144548e900069e080 /bitbake/lib/bb/command.py
parent2174a51ee8bcfd3a14e0a889e9beccc0b32e406b (diff)
downloadpoky-7663a520612203db35145609a8ff3fd80de4149a.tar.gz
bitbake: cooker: Rename confusing 'stop' state to 'forceshutdown'
The shutdown state causes the server to finish what its doing, stop was them meant to completely stop it. It doesn't mean the server is stopped though. Renaming the current stop event for forceshutdown gives more meaning to what it actually does. The stopped namespace then becomes available to indicate a completely stopped server. (Bitbake rev: 12e9d33bfae5294e3870dfd1202f63383ad05e92) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/command.py')
-rw-r--r--bitbake/lib/bb/command.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py
index 3527ad03c1..641cc70619 100644
--- a/bitbake/lib/bb/command.py
+++ b/bitbake/lib/bb/command.py
@@ -137,13 +137,13 @@ class CommandsSync:
137 """ 137 """
138 Trigger cooker 'shutdown' mode 138 Trigger cooker 'shutdown' mode
139 """ 139 """
140 command.cooker.shutdown() 140 command.cooker.shutdown(False)
141 141
142 def stateStop(self, command, params): 142 def stateForceShutdown(self, command, params):
143 """ 143 """
144 Stop the cooker 144 Stop the cooker
145 """ 145 """
146 command.cooker.stop() 146 command.cooker.shutdown(True)
147 147
148 def getVariable(self, command, params): 148 def getVariable(self, command, params):
149 """ 149 """