aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-demo-hmi/navigation/navigation/download_mapdata.sh
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-demo-hmi/navigation/navigation/download_mapdata.sh')
-rwxr-xr-xrecipes-demo-hmi/navigation/navigation/download_mapdata.sh61
1 files changed, 61 insertions, 0 deletions
diff --git a/recipes-demo-hmi/navigation/navigation/download_mapdata.sh b/recipes-demo-hmi/navigation/navigation/download_mapdata.sh
new file mode 100755
index 00000000..d1f9a796
--- /dev/null
+++ b/recipes-demo-hmi/navigation/navigation/download_mapdata.sh
@@ -0,0 +1,61 @@
+#!/bin/sh
+#
+# AGL Navigation mapdata download scripts
+#
+
+#--------------------------------------------------------------
+help()
+{
+bn=`basename $0`
+cat << EOF
+usage
+host: sudo $bn 'target_rootfs_path/'
+target : $bn /
+EOF
+
+}
+#-check para-------------------------------------------------------
+shift `expr $OPTIND - 1`
+
+if [ $# != 1 ]; then
+ help
+ exit
+fi
+
+rootfs=$1
+
+#----------------------------------------------------------------
+
+# check the if root? ------------------------------
+userid=`id -u`
+if [ $userid -ne "0" ]; then
+ echo "you're not root? run with sudo"
+ exit
+fi
+
+if [ ! -e $1 ]; then
+ echo "rootfs:$1 not found"
+ exit
+fi
+
+if [ ! -f $HOME/navi_data_UK.tar.gz ]; then
+ echo "no map data"
+ echo "start downloading..."
+ wget --directory-prefix=$HOME http://agl.wismobi.com/data/UnitedKingdom_TR9/navi_data_UK.tar.gz
+else
+ echo "use downloaded map data"
+fi
+
+mapdatadir=$rootfs/var/mapdata
+
+if [ ! -d $mapdatadir ]; then
+ echo "map data directory does not exist"
+ echo "create a directory" $mapdatadir
+ mkdir -p $mapdatadir
+else
+ echo "map data directory exists"
+fi
+
+tar xvzf $HOME/navi_data_UK.tar.gz -C $mapdatadir
+sync
+echo "done.."