From b7f957063c3e58ce845830d6550aa6b512c3abef Mon Sep 17 00:00:00 2001 From: Naoto Yamaguchi Date: Sat, 21 May 2022 14:35:48 +0900 Subject: Fix a recipe issue cased by yocto update After the yocto update to kirkstone, meta-agl-lxc caused some recipe issue. Some r-car bsp modification recipe has mismatch to new version. Container config recipe has md5 hash mismatch with common license. Fix path from /lib/systemd/ to ${D}/${systemd_unitdir}/. This patch fix these issue. Bug-AGL : SPEC-4394 Change-Id: Ibf40f74f028b59dcd59431916eeaeac4f4c56e16 Signed-off-by: Naoto Yamaguchi --- meta-agl-lxc/recipes-demo/mominavi/mominavi_git.bb | 4 ++-- meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb | 4 ++-- meta-agl-lxc/recipes-demo/momiscreen/momiscreen_git.bb | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'meta-agl-lxc/recipes-demo') diff --git a/meta-agl-lxc/recipes-demo/mominavi/mominavi_git.bb b/meta-agl-lxc/recipes-demo/mominavi/mominavi_git.bb index 3c93427a..124252b5 100644 --- a/meta-agl-lxc/recipes-demo/mominavi/mominavi_git.bb +++ b/meta-agl-lxc/recipes-demo/mominavi/mominavi_git.bb @@ -34,8 +34,8 @@ do_configure:prepend() { fi } do_install:append() { - install -d ${D}/lib/systemd/system - install -m 0644 ${WORKDIR}/mominavi.service ${D}/lib/systemd/system + install -d ${D}/${systemd_unitdir}/system + install -m 0644 ${WORKDIR}/mominavi.service ${D}/${systemd_unitdir}/system install -m 0755 -d ${D}${sysconfdir}/default/ install -m 0755 ${WORKDIR}/mominavi ${D}${sysconfdir}/default/ diff --git a/meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb b/meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb index 25674fbc..02fc6f66 100644 --- a/meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb +++ b/meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb @@ -27,8 +27,8 @@ inherit qmake5 systemd QT_INSTALL_PREFIX = "/usr" do_install:append() { - install -d ${D}/lib/systemd/system - install -m 0644 ${WORKDIR}/momiplay.service ${D}/lib/systemd/system + install -d ${D}/${systemd_unitdir}/system + install -m 0644 ${WORKDIR}/momiplay.service ${D}/${systemd_unitdir}/system install -m 0755 -d ${D}${sysconfdir}/default/ install -m 0755 ${WORKDIR}/momiplay ${D}${sysconfdir}/default/ diff --git a/meta-agl-lxc/recipes-demo/momiscreen/momiscreen_git.bb b/meta-agl-lxc/recipes-demo/momiscreen/momiscreen_git.bb index 35fc6e75..f37a5365 100644 --- a/meta-agl-lxc/recipes-demo/momiscreen/momiscreen_git.bb +++ b/meta-agl-lxc/recipes-demo/momiscreen/momiscreen_git.bb @@ -26,8 +26,8 @@ inherit qmake5 systemd QT_INSTALL_PREFIX = "/usr" do_install:append() { - install -d ${D}/lib/systemd/system - install -m 0644 ${WORKDIR}/momiscreen.service ${D}/lib/systemd/system + install -d ${D}/${systemd_unitdir}/system + install -m 0644 ${WORKDIR}/momiscreen.service ${D}/${systemd_unitdir}/system install -m 0755 -d ${D}${sysconfdir}/default/ install -m 0755 ${WORKDIR}/momiscreen ${D}${sysconfdir}/default/ -- cgit 1.2.3-korg