aboutsummaryrefslogtreecommitdiffstats
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-27 16:10:17 +0000
commit8583af6d83d71c44d8441aa5cfb948bb45de47da (patch)
tree0cb413c31a284b42b64848b5d1984d3c84c87d5b /recipes-demo-hmi/navigation/mapviewer/mapviewer-settings.sh
parenta6e0f8ed016d6bfc06b88a27249adf33378d4d99 (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> (cherry picked from commit d713285f617aed53a897da8d9f8f66943c7b09e4)
Diffstat (limited to 'recipes-demo-hmi/navigation/mapviewer/mapviewer-settings.sh')
-rwxr-xr-xrecipes-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 100755
index 0d7bf205b..000000000
--- 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