diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2013-11-25 15:21:28 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-02 11:27:36 +0000 |
commit | d71059c86a8160f39af6ddfdd30c86835f4eb959 (patch) | |
tree | 47bfb0568e568d843692a14506f2a96503eeff49 /oe-init-build-env | |
parent | 2e60ef7fe63974e443a9ddc25c5eb4249ec37963 (diff) | |
download | openembedded-core-contrib-d71059c86a8160f39af6ddfdd30c86835f4eb959.tar.gz |
oe-init-build-env: Allow startup with and without memres
Use the bitbake --status-only and the fact that bitbake.lock will
contain the host name and port to determine when to activate or
shutdown the stay resident bitbake server.
This allows a end developer to cleanly switch between the two ways to
use bitbake as well as enter the memres bitbake server from multiple
shells without starting the server if it is already running.
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'oe-init-build-env')
-rwxr-xr-x | oe-init-build-env | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/oe-init-build-env b/oe-init-build-env index de9692fe44d..8ef32f3d551 100755 --- a/oe-init-build-env +++ b/oe-init-build-env @@ -47,3 +47,12 @@ else unset BBPATH fi +# Shutdown any bitbake server if the BBSERVER variable is not set +if [ -z "$BBSERVER" ] && [ -f bitbake.lock ] ; then + grep ":" bitbake.lock > /dev/null && BBSERVER=`cat bitbake.lock` bitbake --status-only + if [ $? = 0 ] ; then + echo "Shutting down bitbake memory resident server with bitbake -m" + BBSERVER=`cat bitbake.lock` bitbake -m + fi +fi + |