From 7a80742dc5c8be95e680c58874cb8b14d6600853 Mon Sep 17 00:00:00 2001 From: Naoto Yamaguchi Date: Sun, 7 Nov 2021 00:11:36 +0900 Subject: Fix: weston is not running after BSP 5.5 merged in cluster-demo weston is not running after BSP 5.5 merged. This patch create new weston-init for gest usage. Bug-AGL: SPEC-4131 Signed-off-by: Naoto Yamaguchi Change-Id: I9b6edc1c45aad0f985a307f3ffb0fe6a47195dd5 --- .../wayland/weston-init-guest/weston.env | 1 + .../wayland/weston-init-guest/weston.ini | 9 +++++++++ .../wayland/weston-init-guest/weston.service | 19 +++++++++++++++++++ 3 files changed, 29 insertions(+) create mode 100644 meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.env create mode 100644 meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.ini create mode 100644 meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.service (limited to 'meta-agl-lxc/recipes-graphics/wayland/weston-init-guest') diff --git a/meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.env b/meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.env new file mode 100644 index 00000000..d6b1a197 --- /dev/null +++ b/meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.env @@ -0,0 +1 @@ +XDG_RUNTIME_DIR=/run/user/0 diff --git a/meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.ini b/meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.ini new file mode 100644 index 00000000..2c05c58a --- /dev/null +++ b/meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.ini @@ -0,0 +1,9 @@ +[core] +backend=drm-backend.so +require-input=false +modules=systemd-notify.so +repaint-window=34 + +[shell] +panel-position=none +background-color=0xff808080 diff --git a/meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.service b/meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.service new file mode 100644 index 00000000..5f23ea79 --- /dev/null +++ b/meta-agl-lxc/recipes-graphics/wayland/weston-init-guest/weston.service @@ -0,0 +1,19 @@ +[Unit] +Description=Weston Wayland Compositor +RequiresMountsFor=/run +After=multi-user.target +Wants=multi-user.target + +[Service] +User=root +PAMName=login +EnvironmentFile=-/etc/default/weston +StandardError=journal +PermissionsStartOnly=true +IgnoreSIGPIPE=no +Type=notify + +ExecStart=/usr/bin/weston --config /etc/xdg/weston/weston.ini --idle-time=0 --drm-lease=${DRM_LEASE_DEVICE} --log=/var/log/weston.log + +[Install] +WantedBy=multi-user.target -- cgit 1.2.3-korg