summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandolph Sapp <rs@ti.com>2023-06-09 20:13:35 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-13 22:10:32 +0100
commit2d371c9abf474ecae8fb986512f5fdeed38871b7 (patch)
treeb8a8218b634a557ea3e9803fa6429dd33ce7cf7d
parent7cf7388e707db021aec0207f563a77a1745680c8 (diff)
downloadpoky-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>
-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 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} += "\
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 weston" 96USERADD_PARAM:${PN} = "--home /home/weston --shell /bin/sh --user-group -G video,input,render weston"
97GROUPADD_PARAM:${PN} = "-r wayland; -r render" 97GROUPADD_PARAM:${PN} = "-r wayland; -r render"
98 98