From: Naoto Yamaguchi Date: Tue, 12 Dec 2017 01:52:01 +0000 (+0900) Subject: Add D-Bus configuration of navigation service X-Git-Tag: 4.99.5~15 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=AGL%2Fmeta-agl-demo.git;a=commitdiff_plain;h=289f6c9d3ce5778fbef43ea00c9308b7d86f97d1 Add D-Bus configuration of navigation service Add the D-Bus configuration provided by the navigation service. Currently navigation app provides API, but this is transient measure. In the future this configuration will be moved to the navigation service. Change-Id: I2eeb13cf3e792c00474cc7999078ec6ae6c5a137 Signed-off-by: Naoto Yamaguchi --- diff --git a/recipes-demo-hmi/navigation/navigation/org.agl.naviapi.conf b/recipes-demo-hmi/navigation/navigation/org.agl.naviapi.conf new file mode 100644 index 000000000..7f4d85f0d --- /dev/null +++ b/recipes-demo-hmi/navigation/navigation/org.agl.naviapi.conf @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/recipes-demo-hmi/navigation/navigation_git.bb b/recipes-demo-hmi/navigation/navigation_git.bb index 822405e3d..9215e5554 100644 --- a/recipes-demo-hmi/navigation/navigation_git.bb +++ b/recipes-demo-hmi/navigation/navigation_git.bb @@ -18,10 +18,11 @@ RDEPENDS_${PN} = " flite openjtalk glib-2.0 freetype sqlite3 wayland zlib expat RDEPENDS_${PN} += " agl-service-navigation " -SRCREV="acbb9ea0678bd2f21f268000332a4786e87fb3f6" +SRCREV="051e504db0e30d3160d63ef67b0225227e5da94d" SRC_URI="git://github.com/AGLExport/gpsnavi.git;branch=agl \ file://download_mapdata_jp.sh \ file://download_mapdata_uk.sh \ + file://org.agl.naviapi.conf \ " RPROVIDES_${PN} = "virtual/navigation" @@ -40,6 +41,9 @@ do_install_append() { install -m 0755 ${WORKDIR}/download_mapdata_jp.sh ${D}/usr/AGL/apps/ install -m 0755 ${WORKDIR}/download_mapdata_uk.sh ${D}/usr/AGL/apps/ + install -d ${D}/etc/dbus-1/session.d/ + install -m 0644 ${WORKDIR}/org.agl.naviapi.conf ${D}/etc/dbus-1/session.d/ + install -d ${D}/var/mapdata }