diff options
author | Yong-iL Joh <yong-il.joh@windriver.com> | 2017-04-04 19:39:56 +0900 |
---|---|---|
committer | Yong-iL Joh <yong-il.joh@windriver.com> | 2017-04-04 19:39:56 +0900 |
commit | 3a0c21f962bba30b602437c78ef238ca39326ec7 (patch) | |
tree | 058280e8b2762bb433ba1185b3e73755309b61cf /scripts | |
parent | 298629e1262e1e5ba1461e664c1af70c26bd8a9d (diff) | |
download | meta-ivi-3a0c21f962bba30b602437c78ef238ca39326ec7.tar.gz meta-ivi-3a0c21f962bba30b602437c78ef238ca39326ec7.tar.bz2 meta-ivi-3a0c21f962bba30b602437c78ef238ca39326ec7.zip |
scripts/checkout: update.
- it can be used for update existing git
- add a guide to README.md
Signed-off-by: Yong-iL Joh <yong-il.joh@windriver.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkout | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/checkout b/scripts/checkout index ec892b3..6963f64 100755 --- a/scripts/checkout +++ b/scripts/checkout @@ -5,5 +5,28 @@ export LANG=C MYDIR=$(dirname "$0") +update_git() { + _git=$1 + _cur_dir=`pwd` + if [ -d ../${_git} ]; then + cd ../${_git} + _null=`git status >& /dev/null` + _r=$? + if [ $_r -eq 0 ]; then + git checkout master >& /dev/null + git pull >& /dev/null + cd ${_cur_dir} + else + echo "fatal: Not a git repository" + exit 2 + fi + else + echo "there is no such directory: $_git " + exit 1 + fi +} + +update_git poky $MYDIR/checkout_layer_hash.sh poky +update_git meta-openembedded $MYDIR/checkout_layer_hash.sh meta-openembedded |