kconfig: refactor scanning and parsing "option" properties
[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                 . ./.config
28                 make
29
30                 echo -n "Installing firmware..."
31                 if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ]; then
32                         if [ "$CONFIG_CARL9170FW_BUILD_MINIBOOT" = "y" ]; then
33                                 echo -n "Apply miniboot..."
34                                 # also adds checksum
35                                 tools/src/miniboot a carlfw/carl9170.fw minifw/miniboot.fw
36                         else
37                                 echo -n "Add checksum..."
38                                 tools/src/checksum carlfw/carl9170.fw
39                         fi
40                 fi
41
42                 install -m 644 carlfw/carl9170.fw \
43                         ../carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw
44                 echo "done."
45         ;;
46
47         *)
48                 $0 config "$@"
49                 $0 compile
50         ;;
51
52
53 esac