From b999b3e4147d065b55c1a7ce53125f767c0a0c8f Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Tue, 30 Jul 2019 03:38:48 +0300 Subject: bluez5: add obex.service.d conf to fix smack label issues All data transfer from obexd need to be located in a direcory that has a User::App-Shared label for bindings to be able to access them. This is done by moving the TMPDIR to /run/user/UID/usrshr Bug-AGL: SPEC-2695 Change-Id: I076eb89d0ed14af67811d497217db583e4f5902b Signed-off-by: Matt Ranostay --- meta-agl-profile-core/recipes-connectivity/bluez5/bluez5/tmpdir.conf | 2 ++ meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 meta-agl-profile-core/recipes-connectivity/bluez5/bluez5/tmpdir.conf (limited to 'meta-agl-profile-core') diff --git a/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5/tmpdir.conf b/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5/tmpdir.conf new file mode 100644 index 000000000..8545d76ec --- /dev/null +++ b/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5/tmpdir.conf @@ -0,0 +1,2 @@ +[Service] +Environment="TMPDIR=/run/user/%U/usrshr" diff --git a/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend b/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend index 736f18c79..36fb31517 100644 --- a/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend +++ b/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend @@ -1,13 +1,18 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" SRC_URI_append = " \ file://bluetooth.conf \ + file://tmpdir.conf \ file://0001-obex-report-notification-status-on-incoming-message.patch \ " +FILES_${PN} += "${systemd_user_unitdir}/obex.service.d/tmpdir.conf" + do_install_append() { install -m 0644 ${WORKDIR}/bluetooth.conf ${D}${sysconfdir}/dbus-1/system.d/bluetooth.conf if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then + mkdir -p ${D}${systemd_user_unitdir}/obex.service.d + install -m 0644 ${WORKDIR}/tmpdir.conf ${D}${systemd_user_unitdir}/obex.service.d/tmpdir.conf mkdir -p ${D}/etc/systemd/user ln -sf ${systemd_user_unitdir}/obex.service ${D}/etc/systemd/user/dbus-org.bluez.obex.service fi -- cgit 1.2.3-korg