carl9170 toolchain: update binutils, gcc
[carl9170fw.git] / autogen.sh
1 #!/bin/bash
2
3 set -e
4
5 case "$1" in
6         config)
7                 echo "Configuring..."
8                 pushd config
9                 cmake .
10                 make
11                 popd
12                 shift 1
13                 config/conf Kconfig "$@"
14                 cmake .
15         ;;
16
17         compile)
18                 echo "Compile time..."
19                 make
20         ;;
21
22         install)
23                 if [ ! -e .config ]; then
24                         exit 1
25                 fi
26
27                 # shellcheck source=/dev/null
28                 . ./.config
29                 make
30
31                 echo -n "Installing firmware..."
32                 if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ]; then
33                         if [ "$CONFIG_CARL9170FW_BUILD_MINIBOOT" = "y" ]; then
34                                 echo -n "Apply miniboot..."
35                                 # also adds checksum
36                                 tools/src/miniboot a carlfw/carl9170.fw minifw/miniboot.fw
37                         else
38                                 echo -n "Add checksum..."
39                                 tools/src/checksum carlfw/carl9170.fw
40                         fi
41                 fi
42
43                 install -m 644 carlfw/carl9170.fw \
44                         ../carl9170-"$CONFIG_CARL9170FW_RELEASE_VERSION".fw
45                 echo "done."
46         ;;
47
48         *)
49                 $0 config "$@"
50                 $0 compile
51         ;;
52
53
54 esac