summaryrefslogtreecommitdiff
path: root/setup.sh
blob: 52717d490d22d825e4b7de2a98ecc932f6257177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash

DIR=$(pwd)
LIB="libs/"

# 2 parameters
# param1: string name of library
# param2: number mercurial revision to use
update_hg_lib() {
    cd $LIB

    if [ ! -d "$1" ]; then
        echo "cloning $1"
        hg clone https://developer.mbed.org/teams/Multi-Hackers/code/$1 ./$1
    fi

    cd $1
    echo "checkout revision $2 of $1"
    hg checkout $2
    
    cd $DIR
}

echo "update submodules"

git submodule update --recursive --init

mdot-library/version.sh
./version.sh

echo "creating libs directory..."
mkdir -p $LIB

update_hg_lib "ISL29011" 4
update_hg_lib "MMA845x" 4
update_hg_lib "MPL3115A2" 3
update_hg_lib "NCP5623B" 4
update_hg_lib "GpsParser" 10
update_hg_lib "DOGS102" 5

echo "generating version header..."
cd $DIR
./version.sh

echo "done"