diff options
-rw-r--r-- | recipes-demo-hmi/navigation/mapviewer/mapviewer.service | 5 | ||||
-rw-r--r-- | recipes-demo-hmi/navigation/mapviewer_%.bbappend | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/recipes-demo-hmi/navigation/mapviewer/mapviewer.service b/recipes-demo-hmi/navigation/mapviewer/mapviewer.service index eba4a0dd0..c3f5515af 100644 --- a/recipes-demo-hmi/navigation/mapviewer/mapviewer.service +++ b/recipes-demo-hmi/navigation/mapviewer/mapviewer.service @@ -1,6 +1,6 @@ [Unit] Conflicts=getty@tty1.service -After=weston.service +After=weston.service HomeScreen.service # map viewr is a child application which can work with navigation. # This app requires mapdata. It has to be stored at /var/mapdata/navi_data_UK . @@ -17,6 +17,7 @@ ExecStartPost=/usr/AGL/mapviewer/mapviewer-settings.sh ExecStop=/usr/bin/killall -s KILL mapview Type=simple +Restart=always [Install] -WantedBy=multi-user.target +WantedBy=default.target diff --git a/recipes-demo-hmi/navigation/mapviewer_%.bbappend b/recipes-demo-hmi/navigation/mapviewer_%.bbappend index a4eebfb4f..4e89af064 100644 --- a/recipes-demo-hmi/navigation/mapviewer_%.bbappend +++ b/recipes-demo-hmi/navigation/mapviewer_%.bbappend @@ -15,7 +15,8 @@ do_install_append() { # Install systemd unit files if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then - install -m 644 -p -D ${WORKDIR}/mapviewer.service ${D}${systemd_system_unitdir}/mapviewer.service + install -d ${D}${systemd_user_unitdir} + install -m 644 -p -D ${WORKDIR}/mapviewer.service ${D}${systemd_user_unitdir}/mapviewer.service fi } @@ -26,6 +27,6 @@ do_install_append() { #SYSTEMD_SERVICE_${PN} = "mapviewer.service" FILES_${PN} += " \ - ${systemd_system_unitdir}/mapviewer.service \ + ${systemd_user_unitdir}/mapviewer.service \ /usr/AGL/mapviewer/ \ " |