[rcar-gen3] Update setup script for gen3 v2.16.0
[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-20170125.zip"
4 ZIP_2="R-Car_Gen3_Series_Evaluation_Software_Package_of_Linux_Drivers-20170125.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
11 function copy_mm_packages() {
12         if [ ! -d $METADIR/binary-tmp ]; then
13                 if [ -f $DOWNLOAD_DIR/$ZIP_1 -a -f $DOWNLOAD_DIR/$ZIP_2 ]; then
14                         mkdir $METADIR/binary-tmp
15                         unzip -o $DOWNLOAD_DIR/$ZIP_1 -d $METADIR/binary-tmp
16                         unzip -o $DOWNLOAD_DIR/$ZIP_2 -d $METADIR/binary-tmp
17                 else
18                         echo -n "The graphics and multimedia acceleration packages for "
19                         echo -e "the R-Car Gen3 board can be downloaded from:"
20                         echo -e " https://www.renesas.com/en-us/software/D6000821.html"
21                         echo -e " https://www.renesas.com/en-us/software/D6000822.html"
22                         echo -e
23                         echo -n "These 2 files from there should be stored in your"
24                         echo -e "'$DOWNLOAD_DIR' directory."
25                         echo -e "  $ZIP_1"
26                         echo -e "  $ZIP_2"
27                         return 1
28                 fi
29         fi
30
31         if [ -f $COPY_SCRIPT ]; then
32                 cd $METADIR/meta-renesas-rcar-gen3/
33                 $COPY_SCRIPT -d -f $METADIR/binary-tmp
34                 cd ..
35         else
36                 echo "scripts to copy drivers for Gen3 not found."
37                 return 1
38         fi
39 }