diff options
author | Randolph Sapp <rs@ti.com> | 2023-06-09 20:13:36 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-06-13 22:10:32 +0100 |
commit | b74de41bb40b2051745f12b368e7fdad3bfbed89 (patch) | |
tree | 5fa23849678b4146cd0592e03494a29415a606dd /meta/recipes-graphics/wayland | |
parent | 2d371c9abf474ecae8fb986512f5fdeed38871b7 (diff) | |
download | poky-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>
Diffstat (limited to 'meta/recipes-graphics/wayland')
-rw-r--r-- | meta/recipes-graphics/wayland/weston-init.bb | 2 |
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} += "\ | |||
93 | CONFFILES:${PN} += "${sysconfdir}/xdg/weston/weston.ini ${sysconfdir}/default/weston" | 93 | CONFFILES:${PN} += "${sysconfdir}/xdg/weston/weston.ini ${sysconfdir}/default/weston" |
94 | 94 | ||
95 | SYSTEMD_SERVICE:${PN} = "weston.service weston.socket" | 95 | SYSTEMD_SERVICE:${PN} = "weston.service weston.socket" |
96 | USERADD_PARAM:${PN} = "--home /home/weston --shell /bin/sh --user-group -G video,input,render weston" | 96 | USERADD_PARAM:${PN} = "--home /home/weston --shell /bin/sh --user-group -G video,input,render,wayland weston" |
97 | GROUPADD_PARAM:${PN} = "-r wayland; -r render" | 97 | GROUPADD_PARAM:${PN} = "-r wayland; -r render" |
98 | 98 | ||