diff options
author | Stephane Desneux <stephane.desneux@open.eurogiciel.org> | 2014-04-14 20:42:47 +0200 |
---|---|---|
committer | Stephane Desneux <stephane.desneux@open.eurogiciel.org> | 2014-04-14 20:42:47 +0200 |
commit | 99b468df7e0f1d4554e154b38d338997c5227719 (patch) | |
tree | ab36587b5bd6af0bd0810b67f4f7d25e14e924db | |
parent | 9f318cd63b126cb45fe8891885ce64f522986079 (diff) | |
download | weston-common-99b468df7e0f1d4554e154b38d338997c5227719.tar.gz weston-common-99b468df7e0f1d4554e154b38d338997c5227719.tar.bz2 weston-common-99b468df7e0f1d4554e154b38d338997c5227719.zip |
start weston without weston-launch
this requires the appropriate permissions on:
- /dev/dri/*
- /dev/input/event*
- /dev/tty*
Now weston also starts on tty7 and produces a
log in /run/display/weston.log
Change-Id: Ibff542df306a0b556e54e3b26654306fd55595cd
Signed-off-by: Stephane Desneux <stephane.desneux@open.eurogiciel.org>
-rw-r--r-- | display-manager-run.service | 10 | ||||
-rw-r--r-- | packaging/weston-generic.spec | 37 |
2 files changed, 38 insertions, 9 deletions
diff --git a/display-manager-run.service b/display-manager-run.service index d791b5d..2242f04 100644 --- a/display-manager-run.service +++ b/display-manager-run.service @@ -2,9 +2,15 @@ Description=Weston display daemon [Service] -ExecStart=/usr/bin/weston-launch -u display -- -i0 -TTYPath=/dev/tty1 +User=display +ExecStart=/usr/bin/weston -i0 --log=%h/weston.log +StandardInput=tty +TTYPath=/dev/tty7 EnvironmentFile=/etc/sysconfig/weston +#adding the capability to configure ttys +#may be needed if the user 'display' doesn't own the tty +#CapabilityBoundingSet=CAP_SYS_TTY_CONFIG + [Install] WantedBy=graphical.target diff --git a/packaging/weston-generic.spec b/packaging/weston-generic.spec index f17f393..7a85711 100644 --- a/packaging/weston-generic.spec +++ b/packaging/weston-generic.spec @@ -10,6 +10,12 @@ Source0: %{name}-%{version}.tar.bz2 Source1001: weston-generic.manifest Provides: weston-startup +Requires: weston +# for getent: +Requires: glibc +# for useradd et al +Requires: pwdutils + BuildRequires: autoconf >= 2.64, automake >= 1.11 BuildRequires: libtool >= 2.2 BuildRequires: libjpeg-devel @@ -63,6 +69,9 @@ cd tz-launcher make %{?_smp_mflags} %install +%define daemon_user display +%define daemon_group display + #install tz-launcher cd tz-launcher %make_install @@ -100,12 +109,17 @@ install -m 0644 weston.ini %{buildroot}%{weston_config_dir} # open the graphics device mkdir -p %{buildroot}%{_sysconfdir}/udev/rules.d cat >%{buildroot}%{_sysconfdir}/udev/rules.d/99-dri.rules <<'EOF' -SUBSYSTEM=="drm", MODE="0660", GROUP="display" +SUBSYSTEM=="drm", MODE="0660", GROUP="%{daemon_group}", SMACK="*" EOF -# user 'display' must own /dev/tty1 for weston to start correctly +# user 'display' must own /dev/tty7 for weston to start correctly cat >%{buildroot}%{_sysconfdir}/udev/rules.d/99-tty.rules <<'EOF' -SUBSYSTEM=="tty", KERNEL=="tty1", GROUP="display", OWNER="display" +SUBSYSTEM=="tty", KERNEL=="tty7", GROUP="%{daemon_group}", OWNER="%{daemon_user}", SMACK="*" +EOF + +# user 'display' must also be able to access /dev/input/event* +cat >%{buildroot}%{_sysconfdir}/udev/rules.d/99-input.rules <<'EOF' +SUBSYSTEM=="input", KERNEL=="event*", MODE="0660", GROUP="input", SMACK="*" EOF # install desktop file @@ -114,19 +128,28 @@ install -m 0644 weston-terminal.desktop %{buildroot}%{_datadir}/applications %pre # create groups 'display' and 'weston-launch' -getent group display >/dev/null || %{_sbindir}/groupadd -r -o display +getent group %{daemon_group} >/dev/null || %{_sbindir}/groupadd -r -o %{daemon_group} +getent group input >/dev/null || %{_sbindir}/groupadd -r -o input getent group weston-launch >/dev/null || %{_sbindir}/groupadd -r -o weston-launch # create user 'display' -getent passwd display >/dev/null || %{_sbindir}/useradd -r -g display -G weston-launch -d /run/display -s /bin/false -c "Display daemon" display +getent passwd %{daemon_user} >/dev/null || %{_sbindir}/useradd -r -g %{daemon_group} -d /run/display -s /bin/false -c "Display daemon" %{daemon_user} + +# add user 'display' to groups 'weston-launch' and 'input' +groupmod -A %{daemon_user} weston-launch +groupmod -A %{daemon_user} input # setup display manager service mkdir -p %{_unitdir}/graphical.target.wants/ ln -sf ../display-manager.path %{_unitdir}/graphical.target.wants/ # setup display manager access (inside user session) -mkdir -p %{_unitdir_user}/default.target.wants/ -ln -sf ../weston-user.service %{_unitdir_user}/default.target.wants/ +mkdir -p %{_unitdir_user}/default.target.requires/ +ln -sf ../weston-user.service %{_unitdir_user}/default.target.requires/ + +%postun +rm -f %{_unitdir}/graphical.target.wants/display-manager.path +rm -f %{_unitdir_user}/default.target.requires/weston-user.service %files %manifest %{name}.manifest |