diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-13 17:31:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-14 08:20:38 +0100 |
commit | 7663a520612203db35145609a8ff3fd80de4149a (patch) | |
tree | 7b26dd111b828926eaccb36144548e900069e080 /bitbake/lib/bb/ui/ncurses.py | |
parent | 2174a51ee8bcfd3a14e0a889e9beccc0b32e406b (diff) | |
download | poky-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/ui/ncurses.py')
-rw-r--r-- | bitbake/lib/bb/ui/ncurses.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/ncurses.py b/bitbake/lib/bb/ui/ncurses.py index c45ffd63ac..b6c20ec388 100644 --- a/bitbake/lib/bb/ui/ncurses.py +++ b/bitbake/lib/bb/ui/ncurses.py | |||
@@ -350,7 +350,7 @@ class NCursesUI: | |||
350 | exitflag = True | 350 | exitflag = True |
351 | if shutdown == 1: | 351 | if shutdown == 1: |
352 | mw.appendText("Second Keyboard Interrupt, stopping...\n") | 352 | mw.appendText("Second Keyboard Interrupt, stopping...\n") |
353 | _, error = server.runCommand(["stateStop"]) | 353 | _, error = server.runCommand(["stateForceShutdown"]) |
354 | if error: | 354 | if error: |
355 | print("Unable to cleanly stop: %s" % error) | 355 | print("Unable to cleanly stop: %s" % error) |
356 | if shutdown == 0: | 356 | if shutdown == 0: |