diff options
author | Alexandru DAMIAN <alexandru.damian@intel.com> | 2014-10-23 15:00:01 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-10-30 13:39:52 +0000 |
commit | f19b4e995ea47f9243f152b39337330307453c9f (patch) | |
tree | deb955e34ca320b307f9c8d331b5a9d921f4513a /bitbake/bin | |
parent | 24dab21567eae1b993f21e9ba8a5e7d4d31bfa13 (diff) | |
download | poky-f19b4e995ea47f9243f152b39337330307453c9f.tar.gz |
bitbake: bitbake: clarify startup message
Fix the startup message by making clear which
server runs on which port.
(Bitbake rev: 26d601ab2a677a422bab425696a2cf6357ff3576)
Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 2 | ||||
-rwxr-xr-x | bitbake/bin/toaster | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index a2e8cc13b0..d102d74e4c 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake | |||
@@ -372,7 +372,7 @@ def main(): | |||
372 | bb.event.ui_queue = [] | 372 | bb.event.ui_queue = [] |
373 | server_connection.terminate() | 373 | server_connection.terminate() |
374 | else: | 374 | else: |
375 | print("server address: %s, server port: %s" % (server.serverImpl.host, server.serverImpl.port)) | 375 | print("Bitbake server address: %s, server port: %s" % (server.serverImpl.host, server.serverImpl.port)) |
376 | return 0 | 376 | return 0 |
377 | 377 | ||
378 | return 1 | 378 | return 1 |
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index 6f5d98e331..34f65e4721 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster | |||
@@ -74,6 +74,8 @@ function webserverStartAll() | |||
74 | if ! cat "${BUILDDIR}/.toastermain.pid" | xargs -I{} kill -0 {} ; then | 74 | if ! cat "${BUILDDIR}/.toastermain.pid" | xargs -I{} kill -0 {} ; then |
75 | retval=1 | 75 | retval=1 |
76 | rm "${BUILDDIR}/.toastermain.pid" | 76 | rm "${BUILDDIR}/.toastermain.pid" |
77 | else | ||
78 | echo "Webserver address: 0.0.0.0:8000" | ||
77 | fi | 79 | fi |
78 | fi | 80 | fi |
79 | return $retval | 81 | return $retval |