gluon-firmware/scripts/update.sh

21 lines
432 B
Bash
Raw Normal View History

2013-12-28 14:11:59 +00:00
#!/bin/bash
2013-12-28 13:54:49 +00:00
set -e
. "$GLUONDIR"/scripts/modules.sh
2013-12-28 13:54:49 +00:00
for module in $GLUON_MODULES; do
2013-12-28 14:31:11 +00:00
var=$(echo $module | tr '[:lower:]/' '[:upper:]_')
2014-01-02 14:16:32 +00:00
eval repo=\${${var}_REPO}
eval branch=\${${var}_BRANCH}
2014-01-02 14:16:32 +00:00
eval commit=\${${var}_COMMIT}
mkdir -p "$GLUONDIR"/$module
cd "$GLUONDIR"/$module
git init
git checkout $commit 2>/dev/null || git fetch $repo $branch
git checkout -B base $commit
git submodule update --init --recursive
2013-12-28 13:54:49 +00:00
done