setup_mm_packages.sh: retab consistently
[AGL/meta-agl.git] / meta-agl-bsp / meta-rcar-gen3 / scripts / setup_mm_packages.sh
1 #!/bin/bash
2
3 ZIP_1="R-Car_Gen3_Series_Evaluation_Software_Package_for_Linux-weston2-20170904.zip"
4 ZIP_2="R-Car_Gen3_Series_Evaluation_Software_Package_of_Linux_Drivers-weston2-20170904.zip"
5
6 COPY_SCRIPT="$METADIR/meta-renesas-rcar-gen3/meta-rcar-gen3/docs/sample/copyscript/copy_evaproprietary_softwares.sh"
7
8 test -f ${XDG_CONFIG_HOME:-~/.config}/user-dirs.dirs && source ${XDG_CONFIG_HOME:-~/.config}/user-dirs.dirs
9 DOWNLOAD_DIR=${XDG_DOWNLOAD_DIR:-$HOME/Downloads}
10 EXTRACT_DIR=$METADIR/binary-tmp
11
12 stdout_in_terminal=1
13 [[ -t 1 ]] && stdout_in_terminal=1
14 function color {
15         [[ $stdout_in_terminal == 0 ]] && return
16         for k in $*; do
17                 case $k in
18                         bold) tput bold 2>/dev/null;;
19                         none) tput sgr0 2>/dev/null;;
20                         *) tput setaf $k 2>/dev/null;;
21                 esac
22         done
23 }
24 color_green=$(color bold 2)
25 color_yellow=$(color bold 3)
26 color_red=$(color bold 1)
27 color_none=$(color none)
28
29 function error() {
30         echo "${color_red}$@${color_none}" >&2
31 }
32
33 function log() {
34         echo "$@" >&2
35 }
36
37 function copy_mm_packages() {
38     if [ -f $DOWNLOAD_DIR/$ZIP_1 -a -f $DOWNLOAD_DIR/$ZIP_2 ]; then
39         mkdir -p $EXTRACT_DIR
40         cp --update $DOWNLOAD_DIR/$ZIP_1 $EXTRACT_DIR
41         cp --update $DOWNLOAD_DIR/$ZIP_2 $EXTRACT_DIR
42     else
43         error "ERROR: FILES \""+$DOWNLOAD_DIR/$ZIP_1+"\" NOT EXTRACTING CORRECTLY"
44         error "ERROR: FILES \""+$DOWNLOAD_DIR/$ZIP_2+"\" NOT EXTRACTING CORRECTLY"
45         log   "The graphics and multimedia acceleration packages for "
46         log   "the R-Car Gen3 board BSP can be downloaded from:"
47         log   "<https://www.renesas.com/en-us/solutions/automotive/rcar-demoboard-2.html>"
48         log
49         error  "These 2 files from there should be stored in your"
50         error  "'$DOWNLOAD_DIR' directory."
51         error  "  $ZIP_1"
52         error  "  $ZIP_2"
53         return 1
54     fi
55
56     if [ -f $COPY_SCRIPT ]; then
57         cd $METADIR/meta-renesas-rcar-gen3/
58         $COPY_SCRIPT -d -f $EXTRACT_DIR
59         cd ..
60     else
61         log   "scripts to copy drivers for Gen3 not found."
62         return 1
63     fi
64 }