summaryrefslogtreecommitdiffstats
path: root/recipes-demo-hmi/navigation/mapviewer/mapviewer-settings.sh
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2019-11-12 07:09:57 +0200
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2019-11-19 16:41:30 +0000
commitd713285f617aed53a897da8d9f8f66943c7b09e4 (patch)
tree0fa3c06d3f3d1419e17c9e823c9b5c2cce6c91dc /recipes-demo-hmi/navigation/mapviewer/mapviewer-settings.sh
parent94d43cc23ef59dcce4912323e19c31247126c101 (diff)
mapviewer: remove recipe due to package being deprecated
mapviewer is no longer used, and will not work with agl-service-navigation rewrite so must be removed. Bug-AGL: SPEC-2880 Change-Id: Ia3a60200ba78be689874c99b18c2b5b329c39a45 Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'recipes-demo-hmi/navigation/mapviewer/mapviewer-settings.sh')
-rw-r--r--recipes-demo-hmi/navigation/mapviewer/mapviewer-settings.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/recipes-demo-hmi/navigation/mapviewer/mapviewer-settings.sh b/recipes-demo-hmi/navigation/mapviewer/mapviewer-settings.sh
deleted file mode 100644
index 0d7bf205..00000000
--- a/recipes-demo-hmi/navigation/mapviewer/mapviewer-settings.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-LMC=/usr/bin/LayerManagerControl
-IFS=$'\n'
-
-SURFACEID=16777216
-
-while :
-do
- /bin/sleep 1
- surfaces=()
- for line in $($LMC get surfaces 2> /dev/null); do
- if [ "X-" = "X$(echo $line | awk '{print $1}')" ]; then
- surfaceid=$(echo $line | awk '{print $3}')
- if [ "$surfaceid" = "$SURFACEID" ]; then
- $LMC set surface $SURFACEID source region 0 0 384 368
- $LMC set surface $SURFACEID destination region 0 0 384 368
- $LMC set surface $SURFACEID visibility 1
- $LMC set layer 11001 render order $SURFACEID
- exit
- fi
- fi
- done
-done