From f5cadbe005303a9fe022aa20a5aa12630b849b54 Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Mon, 17 Jun 2013 12:11:52 +0100 Subject: bitbake: knotty, bitbake: add option to terminate a remote server I add an option to terminate a remote server gracefully as not to need a kill command. (Bitbake rev: 7495f835666a9561c2c7d84da7aaa74e4df55b9a) Signed-off-by: Alexandru DAMIAN Signed-off-by: Richard Purdie --- bitbake/bin/bitbake | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bitbake/bin/bitbake') diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index e77266b4ba..0d6b3ae4c9 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -197,6 +197,9 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters): parser.add_option("", "--remote-server", help = "Connect to the specified server", action = "store", dest = "remote_server", default = False) + parser.add_option("-m", "--kill-server", help = "Terminate the remote server", + action = "store_true", dest = "kill_server", default = False) + parser.add_option("", "--observe-only", help = "Connect to a server as an observing-only client", action = "store_true", dest = "observe_only", default = False) -- cgit v1.2.3-54-g00ecf