summaryrefslogtreecommitdiffstats
path: root/meta-agl-ic-container/recipes-kernel/linux
diff options
context:
space:
mode:
authorNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>2022-02-26 19:06:05 +0900
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2022-03-01 22:35:57 +0000
commitc0085760179255579ffac8faa6cd5d216b8a3384 (patch)
tree05a3ba67c14f5a29e592387454c2c708c1257b32 /meta-agl-ic-container/recipes-kernel/linux
parent736e424b21374052a2c61cf2d3e34982a5004c12 (diff)
After BSP 5.9 is merged, linux-renesus fail building in drm-lease environment. It causes bsp kernel change at https://github.com/renesas-rcar/linux-bsp/commit/cd7ad23ceb3cbe67263ded2621dda08b4583b0f4 This patch update old patch to fix this build issue. AGL-Bug : SPEC-4269 Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> Change-Id: Iea8f37c9dbd766a971693a637cd4d90b35d4eef0 (cherry picked from commit 0f364fe8fcd181ba8f2a5e032b21e2fcc3c516ca)
Diffstat (limited to 'meta-agl-ic-container/recipes-kernel/linux')
0 files changed, 0 insertions, 0 deletions
e>
SRC_URI += "file://org.freedesktop.UDisks.conf \
            file://udisks.service \
            file://automount.service \
            file://automount.sh \
           "
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"

FILES_${PN} += "${base_libdir}/systemd/system/automount.service \
                ${base_libdir}/systemd/system/udisks.service \
                ${libexecdir}/automount.sh \
               "

SYSTEMD_AUTO_ENABLE = "enable"
SYSTEMD_SERVICE_${PN} = "udisks.service automount.service"

do_install_append () {
    install -d ${D}${sysconfdir}/dbus-1/system.d
    install -m 644 ${WORKDIR}/org.freedesktop.UDisks.conf ${D}${sysconfdir}/dbus-1/system.d/

    install -d ${D}${base_libdir}/systemd/system
    install -m 0644 ${WORKDIR}/udisks.service ${D}${base_libdir}/systemd/system

    install -d ${D}${base_libdir}/systemd/system
    install -m 0644 ${WORKDIR}/automount.service ${D}${base_libdir}/systemd/system

    install -d ${D}${libexecdir}
    install -m 0755 ${WORKDIR}/automount.sh ${D}${libexecdir}/automount.sh
}