diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2012-02-23 21:49:13 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-24 18:05:46 +0000 |
commit | 22194a04f224864dd687660e351a3a10da1f06fa (patch) | |
tree | 4dcf76dac3979127180caa52325085314b7b5437 /scripts | |
parent | d390a2d6a14b1bec11f6e6ceaa448e15f18e0017 (diff) | |
download | openembedded-core-22194a04f224864dd687660e351a3a10da1f06fa.tar.gz openembedded-core-22194a04f224864dd687660e351a3a10da1f06fa.tar.bz2 openembedded-core-22194a04f224864dd687660e351a3a10da1f06fa.tar.xz openembedded-core-22194a04f224864dd687660e351a3a10da1f06fa.zip |
scripts/hob: Launch the new hob
Change the scripts to launch the new Hob.
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/hob | 30 |
1 files changed, 1 insertions, 29 deletions
diff --git a/scripts/hob b/scripts/hob index 480413b63..ee80cb370 100755 --- a/scripts/hob +++ b/scripts/hob @@ -1,33 +1,5 @@ #!/usr/bin/env bash -if ! (test -r "$BUILDDIR/conf/hob-pre.conf"); then - cat <<EOM -You had no conf/hob-pre.conf file. An initial version of this configuration -file has therefore been created for you. This file will be used to store -configuration values you set in hob. - -EOM -touch conf/hob-pre.conf -fi - -if ! (test -r "$BUILDDIR/conf/hob-post.conf"); then - cat <<EOM -You had no conf/hob-post.conf file. An initial version of this configuration -file has therefore been created for you. This file will be used to store -configuration values you set in hob. - -EOM -(cat <<EOF -INHERIT += "image_types" -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 +bitbake -u hob ret=$? exit $ret |