summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandolph Sapp <rs@ti.com>2023-06-09 20:13:36 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-13 22:10:32 +0100
commitb74de41bb40b2051745f12b368e7fdad3bfbed89 (patch)
tree5fa23849678b4146cd0592e03494a29415a606dd
parent2d371c9abf474ecae8fb986512f5fdeed38871b7 (diff)
downloadpoky-b74de41bb40b2051745f12b368e7fdad3bfbed89.tar.gz
weston-init: add the weston user to the wayland group
Add the weston user to the wayland group so all users accessing the global weston socket in /run all share a group. (From OE-Core rev: 30198b36b00a1967d1f8f8f556a0ba2415954f4e) Signed-off-by: Randolph Sapp <rs@ti.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-graphics/wayland/weston-init.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/weston-init.bb b/meta/recipes-graphics/wayland/weston-init.bb
index 6d62993d7d..4fa302c833 100644
--- a/meta/recipes-graphics/wayland/weston-init.bb
+++ b/meta/recipes-graphics/wayland/weston-init.bb
@@ -93,6 +93,6 @@ FILES:${PN} += "\
93CONFFILES:${PN} += "${sysconfdir}/xdg/weston/weston.ini ${sysconfdir}/default/weston" 93CONFFILES:${PN} += "${sysconfdir}/xdg/weston/weston.ini ${sysconfdir}/default/weston"
94 94
95SYSTEMD_SERVICE:${PN} = "weston.service weston.socket" 95SYSTEMD_SERVICE:${PN} = "weston.service weston.socket"
96USERADD_PARAM:${PN} = "--home /home/weston --shell /bin/sh --user-group -G video,input,render weston" 96USERADD_PARAM:${PN} = "--home /home/weston --shell /bin/sh --user-group -G video,input,render,wayland weston"
97GROUPADD_PARAM:${PN} = "-r wayland; -r render" 97GROUPADD_PARAM:${PN} = "-r wayland; -r render"
98 98