diff options
author | Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com> | 2017-09-11 16:07:39 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-09-28 21:18:08 +0000 |
commit | bd35f84a7a1039f9fa666e4ee33f6341c6a0d2da (patch) | |
tree | 6085db6fa55d4ece66ca6ee73748e6533284e396 /recipes-demo-hmi/navigation/mapviewer_%.bbappend | |
parent | d66de47398e0644f2177dc9f1a8ee081c533fd7a (diff) |
mapview: It should be run user service instead of system
Change-Id: I65dd87561b80765ae2bbff5fc7f903ffe27394a8
Signed-off-by: Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com>
Diffstat (limited to 'recipes-demo-hmi/navigation/mapviewer_%.bbappend')
-rw-r--r-- | recipes-demo-hmi/navigation/mapviewer_%.bbappend | 5 |
1 files changed, 3 insertions, 2 deletions
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/ \ " |