summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-28 14:28:30 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-28 14:28:33 +0100
commit9af03a89605e3db9bce3cea1e0f2d0b6cfaa6fe1 (patch)
tree3e67c6c0263e4ebbccce29878d1f8b00b685479c /bin
parent64ca1aa1fd5f0473196b6cd805637fa644a92173 (diff)
downloadbitbake-9af03a89605e3db9bce3cea1e0f2d0b6cfaa6fe1.tar.gz
server: Remove none server
The process server backend has been serving well as the default for a long time now and the UI model is much better thought out that it used to be. With the move to make bitbake a memory resident process, the none server is now looking rather pointless and complicates the code needlessly. Lets therefore now remove it. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bitbake6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/bitbake b/bin/bitbake
index ac35b94e3..a868557a1 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -167,7 +167,7 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters):
parser.add_option("-u", "--ui", help = "userinterface to use",
action = "store", dest = "ui")
- parser.add_option("-t", "--servertype", help = "Choose which server to use, none, process or xmlrpc",
+ parser.add_option("-t", "--servertype", help = "Choose which server to use, process or xmlrpc",
action = "store", dest = "servertype")
parser.add_option("", "--revisions-changed", help = "Set the exit code depending on whether upstream floating revisions have changed or not",
@@ -191,7 +191,7 @@ def main():
ui_main = get_ui(configuration)
- # Server type can be xmlrpc, process or none currently, if nothing is specified,
+ # Server type can be xmlrpc or process currently, if nothing is specified,
# the default server is process
if configParams.servertype:
server_type = configParams.servertype
@@ -203,7 +203,7 @@ def main():
server = getattr(module, server_type)
except AttributeError:
sys.exit("FATAL: Invalid server type '%s' specified.\n"
- "Valid interfaces: xmlrpc, process [default], none." % servertype)
+ "Valid interfaces: xmlrpc, process [default]." % servertype)
if configParams.server_only:
if configParams.servertype != "xmlrpc":