diff options
author | Ross Burton <ross.burton@intel.com> | 2013-05-31 14:22:56 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-07 16:48:23 +0100 |
commit | fcbf8659927ba73880930d08a12a16dd103c9099 (patch) | |
tree | cf19d4556d71ea4a82a3d143a3238fee714973f5 /meta | |
parent | 1377d9d51c962a10c6a0aef52a428bc216e62481 (diff) | |
download | poky-fcbf8659927ba73880930d08a12a16dd103c9099.tar.gz |
weston: add a weston-launch group
For weston-launch to be used by a non-root user, the user either needs to be a
member of the weston-launch group or own an active systemd user session. Create
this group so users can be members of it.
(From OE-Core rev: 02e486ec9321fd3d7769c70979207335847a8f92)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/wayland/weston_1.0.6.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/weston_1.0.6.bb b/meta/recipes-graphics/wayland/weston_1.0.6.bb index dd17c03ad1..07811f2831 100644 --- a/meta/recipes-graphics/wayland/weston_1.0.6.bb +++ b/meta/recipes-graphics/wayland/weston_1.0.6.bb | |||
@@ -12,7 +12,7 @@ SRC_URI = "http://wayland.freedesktop.org/releases/${BPN}-${PV}.tar.xz \ | |||
12 | SRC_URI[md5sum] = "63202129d66d5514e572814da5dfa1f7" | 12 | SRC_URI[md5sum] = "63202129d66d5514e572814da5dfa1f7" |
13 | SRC_URI[sha256sum] = "c833bc4dc8667561d2639b57220541531c039aa9332ce2a7022a3c466eb894f1" | 13 | SRC_URI[sha256sum] = "c833bc4dc8667561d2639b57220541531c039aa9332ce2a7022a3c466eb894f1" |
14 | 14 | ||
15 | inherit autotools pkgconfig | 15 | inherit autotools pkgconfig useradd |
16 | 16 | ||
17 | DEPENDS = "libxkbcommon gdk-pixbuf pixman cairo glib-2.0 mtdev jpeg" | 17 | DEPENDS = "libxkbcommon gdk-pixbuf pixman cairo glib-2.0 mtdev jpeg" |
18 | DEPENDS += "wayland mesa virtual/egl" | 18 | DEPENDS += "wayland mesa virtual/egl" |
@@ -57,3 +57,6 @@ FILES_${PN}-examples = "${bindir}/*" | |||
57 | 57 | ||
58 | RDEPENDS_${PN} += "xkeyboard-config" | 58 | RDEPENDS_${PN} += "xkeyboard-config" |
59 | RRECOMMENDS_${PN} = "liberation-fonts" | 59 | RRECOMMENDS_${PN} = "liberation-fonts" |
60 | |||
61 | USERADD_PACKAGES = "${PN}" | ||
62 | GROUPADD_PARAM_${PN} = "--system weston-launch" | ||