From 11505a45554d8db0ca0fd6f5e77c88cbbb7cacb3 Mon Sep 17 00:00:00 2001 From: Naoto Yamaguchi Date: Sat, 21 May 2022 18:14:07 +0900 Subject: Fix wayland socket name The default socket name was changed to wayland-1 in weston 10.0. Each wayland client is using wayland-0 that is previous default name. This patch change wayland socket name using environment variable. Bug-AGL : SPEC-4394 Signed-off-by: Naoto Yamaguchi Change-Id: Ia6c8dff50e7979c0f3b809e6df76a57be6dca7df --- meta-agl-lxc/recipes-demo/cluster-refgui/cluster-refgui_git.bb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta-agl-lxc/recipes-demo/cluster-refgui/cluster-refgui_git.bb') diff --git a/meta-agl-lxc/recipes-demo/cluster-refgui/cluster-refgui_git.bb b/meta-agl-lxc/recipes-demo/cluster-refgui/cluster-refgui_git.bb index 7a5b8a78..4327c8de 100644 --- a/meta-agl-lxc/recipes-demo/cluster-refgui/cluster-refgui_git.bb +++ b/meta-agl-lxc/recipes-demo/cluster-refgui/cluster-refgui_git.bb @@ -10,6 +10,7 @@ DEPENDS = " \ BRANCH = "master" SRC_URI = "git://git.automotivelinux.org/src/cluster-refgui;protocol=https;branch=${BRANCH} \ file://cluster.service \ + file://cluster \ " SRCREV = "a16c6201be94a57eb8151a91699084d99694877c" @@ -29,6 +30,9 @@ SYSTEMD_SERVICE:${PN} = "cluster.service" do_install:append() { install -d ${D}${systemd_unitdir}/system install -m 0644 ${WORKDIR}/cluster.service ${D}${systemd_unitdir}/system/ + + install -m 0755 -d ${D}${sysconfdir}/default/ + install -m 0755 ${WORKDIR}/cluster ${D}${sysconfdir}/default/ } FILES:${PN} += "${APP_DIR}/" -- cgit 1.2.3-korg