aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2014-10-23 15:00:01 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-10-30 13:39:52 +0000
commitf19b4e995ea47f9243f152b39337330307453c9f (patch)
treedeb955e34ca320b307f9c8d331b5a9d921f4513a /bitbake/bin
parent24dab21567eae1b993f21e9ba8a5e7d4d31bfa13 (diff)
downloadopenembedded-core-contrib-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-xbitbake/bin/bitbake2
-rwxr-xr-xbitbake/bin/toaster2
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():
bb.event.ui_queue = []
server_connection.terminate()
else:
- print("server address: %s, server port: %s" % (server.serverImpl.host, server.serverImpl.port))
+ print("Bitbake server address: %s, server port: %s" % (server.serverImpl.host, server.serverImpl.port))
return 0
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()
if ! cat "${BUILDDIR}/.toastermain.pid" | xargs -I{} kill -0 {} ; then
retval=1
rm "${BUILDDIR}/.toastermain.pid"
+ else
+ echo "Webserver address: 0.0.0.0:8000"
fi
fi
return $retval