[oe-commits] Joshua Lock : scripts/hob: notify the user when the GUI won' t launch immediately

git version control git at git.openembedded.org
Mon Sep 5 19:31:19 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: a160f4dd48b91c5e6f8c290c7572e29a39a3e693
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=a160f4dd48b91c5e6f8c290c7572e29a39a3e693

Author: Joshua Lock <josh at linux.intel.com>
Date:   Fri Sep  2 14:47:18 2011 -0700

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]

Signed-off-by: Joshua Lock <josh at linux.intel.com>

---

 scripts/hob |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/scripts/hob b/scripts/hob
index bb88a76..480413b 100755
--- a/scripts/hob
+++ b/scripts/hob
@@ -22,6 +22,11 @@ EOF
 ) > conf/hob-post.conf
 fi
 
+# Users don't like to launch GUI's and see a bunch of text whiz by, notify them
+if [ ! -e "$BUILDDIR/pseudodone" ]; then
+    echo "Before we can launch the GUI we need to build some native tools required for running"
+fi
+
 bitbake -r conf/hob-pre.conf -R conf/hob-post.conf -u hob
 
 ret=$?





More information about the Openembedded-commits mailing list