Fix a recipe issue cased by yocto update 05/27505/3
authorNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Sat, 21 May 2022 05:35:48 +0000 (14:35 +0900)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Thu, 9 Jun 2022 11:02:47 +0000 (11:02 +0000)
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 <naoto.yamaguchi@aisin.co.jp>
meta-agl-lxc/dynamic-layers/meta-rcar-gen3/recipes-connectivity/openssl/openssl_%.bbappend [moved from meta-agl-lxc/dynamic-layers/meta-rcar-gen3/recipes-connectivity/openssl/openssl_1.1.%.bbappend with 100% similarity]
meta-agl-lxc/dynamic-layers/meta-rcar-gen3/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.20.%.bbappend [moved from meta-agl-lxc/dynamic-layers/meta-rcar-gen3/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.3.bbappend with 100% similarity]
meta-agl-lxc/recipes-container/lxc-config/lxc-config-cluster-demo_1.0.bb
meta-agl-lxc/recipes-container/lxc-config/lxc-config-dummy_1.0.bb
meta-agl-lxc/recipes-container/lxc-config/lxc-config-ivi-demo_1.0.bb
meta-agl-lxc/recipes-demo/mominavi/mominavi_git.bb
meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb
meta-agl-lxc/recipes-demo/momiscreen/momiscreen_git.bb

index d4e602e..a30505e 100644 (file)
@@ -1,6 +1,6 @@
 DESCRIPTION = "AGL cluster demo container LXC config"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=3775480a712fc46a69647678acb234cb"
+LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=550794465ba0ec5312d6919e203a55f9"
 
 inherit lxc-config
 
index 71d43ed..4124639 100644 (file)
@@ -1,5 +1,5 @@
 DESCRIPTION = "AGL dummy container LXC config"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=3775480a712fc46a69647678acb234cb"
+LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=550794465ba0ec5312d6919e203a55f9"
 
 inherit lxc-config
index f55d336..0bc7e11 100644 (file)
@@ -1,6 +1,6 @@
 DESCRIPTION = "AGL simple IVI demo container LXC config"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=3775480a712fc46a69647678acb234cb"
+LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/BSD-3-Clause;md5=550794465ba0ec5312d6919e203a55f9"
 
 inherit lxc-config
 
index 3c93427..124252b 100644 (file)
@@ -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/
index 25674fb..02fc6f6 100644 (file)
@@ -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/
index 35fc6e7..f37a536 100644 (file)
@@ -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/