carl9170: Add explicit build target
[linux-libre-firmware.git] / carl9170fw / 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 carl9170.elf
20                 make
21         ;;
22
23         install)
24                 if [ ! -e .config ]; then
25                         exit 1
26                 fi
27
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