summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandolph Sapp <rs@ti.com>2023-06-09 20:13:34 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-06-13 22:10:32 +0100
commit7cf7388e707db021aec0207f563a77a1745680c8 (patch)
tree84574b1d4815a7e0255adadfc17d8d072622769a
parenteee8bb497f7f05b70db321e9bc0d702c7294b862 (diff)
downloadpoky-7cf7388e707db021aec0207f563a77a1745680c8.tar.gz
weston-init: make sure the render group exists
Add the render group explicitly here to make sure it exists for the useradd command. (From OE-Core rev: 3134fca12c6f74d2b99f79fb751bc5513c5b937a) 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 a7adce7fda..b637fa6a4a 100644
--- a/meta/recipes-graphics/wayland/weston-init.bb
+++ b/meta/recipes-graphics/wayland/weston-init.bb
@@ -94,5 +94,5 @@ CONFFILES:${PN} += "${sysconfdir}/xdg/weston/weston.ini ${sysconfdir}/default/we
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 weston"
97GROUPADD_PARAM:${PN} = "-r wayland" 97GROUPADD_PARAM:${PN} = "-r wayland; -r render"
98 98