diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2016-12-27 12:43:32 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2016-12-27 12:47:13 +0100 |
commit | dd70c8c5298a1fea8b2ff2be50536af777b9dfaa (patch) | |
tree | 86b7d61d8f954106fd36b6dcbad5ddd6e7cb460f /recipes-demo-hmi/homescreen | |
parent | 2fceebaccdbd1210f095f139c8358aa8ff635e65 (diff) |
Fix: SPEC-377, miss dbus conf file to make status icon working
Change-Id: I8b64adf1c73244447f348ae140a4bd63d3796357
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'recipes-demo-hmi/homescreen')
-rw-r--r-- | recipes-demo-hmi/homescreen/homescreen/dbus-homescreen.conf.in | 6 | ||||
-rw-r--r-- | recipes-demo-hmi/homescreen/homescreen_git.bb | 8 |
2 files changed, 13 insertions, 1 deletions
diff --git a/recipes-demo-hmi/homescreen/homescreen/dbus-homescreen.conf.in b/recipes-demo-hmi/homescreen/homescreen/dbus-homescreen.conf.in new file mode 100644 index 000000000..a79d70f72 --- /dev/null +++ b/recipes-demo-hmi/homescreen/homescreen/dbus-homescreen.conf.in @@ -0,0 +1,6 @@ +<?xml version="1.0"?> <!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> +<busconfig> + <policy context="default"> + <allow send_destination="org.agl.homescreen"/> + </policy> +</busconfig> diff --git a/recipes-demo-hmi/homescreen/homescreen_git.bb b/recipes-demo-hmi/homescreen/homescreen_git.bb index e03b14d3a..2115804b1 100644 --- a/recipes-demo-hmi/homescreen/homescreen_git.bb +++ b/recipes-demo-hmi/homescreen/homescreen_git.bb @@ -25,7 +25,8 @@ SRCREV = "${AUTOREV}" PV = "0.0+git${SRCPV}" SRC_URI = "git://gerrit.automotivelinux.org/gerrit/p/staging/HomeScreen.git;protocol=http \ - file://homescreen.pc.in " + file://homescreen.pc.in \ + file://dbus-homescreen.conf.in" PATH_prepend = "${STAGING_DIR_NATIVE}${OE_QMAKE_PATH_QT_BINS}:" @@ -44,6 +45,11 @@ do_install() { ln -sf libhomescreen.so.1.0.0 ${D}${libdir}/libhomescreen.so.1 ln -sf libhomescreen.so.1.0.0 ${D}${libdir}/libhomescreen.so.1.0 +# claneys: add dbus policy to make wifi/bluetooth status icon working as quick +# workaround. (jira.automotivelinux.org : SPEC-377) + install -d ${D}/etc/dbus-1/session.d + install -m 0644 ${WORKDIR}/dbus-homescreen.conf.in ${D}/etc/dbus-1/session.d/homescreen.conf + # kooltux: still some problem with paths inside .pc file # error at build time: # ERROR: homescreen-git-r0 do_populate_sysroot: QA Issue: homescreen.pc failed sanity test (tmpdir) in path /xdt/build/tmp/work/cortexa15hf-neon-agl-linux-gnueabi/homescreen/git-r0/sysroot-destdir/usr/lib/pkgconfig [pkgconfig] |