summaryrefslogtreecommitdiffstats
path: root/scripts/hob
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-09-02 14:47:18 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-06 16:37:01 +0100
commitf8ba1425050b5d907e1ad6e5a297483e80ec5a17 (patch)
tree943aa14c7ebb4825c3985d3a302f7433a22d9d44 /scripts/hob
parent886440c535fdd0b39568a3acdcace677827d9f0f (diff)
downloadpoky-f8ba1425050b5d907e1ad6e5a297483e80ec5a17.tar.gz
scripts/hob: notify the user when the GUI won't launch immediately
If the wrapper script needs to build pseudo before we can launch hob we need to notify the user so they aren't shocked by the action of launching a GUI and seeing a bunch of text whiz by on the console. Fixes [YOCTO #1435] (From OE-Core rev: a160f4dd48b91c5e6f8c290c7572e29a39a3e693) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/hob')
-rwxr-xr-xscripts/hob5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/hob b/scripts/hob
index bb88a76135..480413b63e 100755
--- a/scripts/hob
+++ b/scripts/hob
@@ -22,6 +22,11 @@ EOF
22) > conf/hob-post.conf 22) > conf/hob-post.conf
23fi 23fi
24 24
25# Users don't like to launch GUI's and see a bunch of text whiz by, notify them
26if [ ! -e "$BUILDDIR/pseudodone" ]; then
27 echo "Before we can launch the GUI we need to build some native tools required for running"
28fi
29
25bitbake -r conf/hob-pre.conf -R conf/hob-post.conf -u hob 30bitbake -r conf/hob-pre.conf -R conf/hob-post.conf -u hob
26 31
27ret=$? 32ret=$?