diff options
author | Randolph Sapp <rs@ti.com> | 2023-06-09 20:13:34 -0500 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-07-04 05:32:29 -1000 |
commit | db8c2ebf18a622c190f1fa106c0da17e8fd48d02 (patch) | |
tree | 41e79b98c0b368404cfa166caa5396b1293a0050 | |
parent | 548b503e6dfd11a8ad4bd2ff514a6d918505be9d (diff) | |
download | poky-db8c2ebf18a622c190f1fa106c0da17e8fd48d02.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: 40007e8925ee63bddddad6e475f75b5494304903)
Signed-off-by: Randolph Sapp <rs@ti.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
(cherry picked from commit 3134fca12c6f74d2b99f79fb751bc5513c5b937a)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-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 77dda03cf5..2b32bc4a08 100644 --- a/meta/recipes-graphics/wayland/weston-init.bb +++ b/meta/recipes-graphics/wayland/weston-init.bb | |||
@@ -93,5 +93,5 @@ CONFFILES:${PN} += "${sysconfdir}/xdg/weston/weston.ini ${sysconfdir}/default/we | |||
93 | 93 | ||
94 | SYSTEMD_SERVICE:${PN} = "weston.service weston.socket" | 94 | SYSTEMD_SERVICE:${PN} = "weston.service weston.socket" |
95 | USERADD_PARAM:${PN} = "--home /home/weston --shell /bin/sh --user-group -G video,input weston" | 95 | USERADD_PARAM:${PN} = "--home /home/weston --shell /bin/sh --user-group -G video,input weston" |
96 | GROUPADD_PARAM:${PN} = "-r wayland" | 96 | GROUPADD_PARAM:${PN} = "-r wayland; -r render" |
97 | 97 | ||