diff options
author | Randolph Sapp <rs@ti.com> | 2023-06-09 20:13:35 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-06-13 22:10:32 +0100 |
commit | 2d371c9abf474ecae8fb986512f5fdeed38871b7 (patch) | |
tree | b8a8218b634a557ea3e9803fa6429dd33ce7cf7d /meta/recipes-graphics | |
parent | 7cf7388e707db021aec0207f563a77a1745680c8 (diff) | |
download | poky-2d371c9abf474ecae8fb986512f5fdeed38871b7.tar.gz |
weston-init: add weston user to the render group
The weston user must be in the render group in order to access render
device nodes for standard user-space graphics.
(From OE-Core rev: 1cba8aa3c5e0635d7b89222d9ccaf889954fe0c9)
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')
-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 b637fa6a4a..6d62993d7d 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 weston" | 96 | USERADD_PARAM:${PN} = "--home /home/weston --shell /bin/sh --user-group -G video,input,render weston" |
97 | GROUPADD_PARAM:${PN} = "-r wayland; -r render" | 97 | GROUPADD_PARAM:${PN} = "-r wayland; -r render" |
98 | 98 | ||