summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/wayland/weston-init
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2016-05-18 13:40:43 -0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-21 22:24:55 +0100
commit2f0283ab0d5e1065931b954dfea905cbc9edb720 (patch)
treed49c496da029660865b2d70a4477df399ba40036 /meta/recipes-graphics/wayland/weston-init
parentd46c5beedca8630e5080401925cb7902edf55efe (diff)
downloadpoky-2f0283ab0d5e1065931b954dfea905cbc9edb720.tar.gz
weston-init: Rework init sequence to avoid code duplication
The new 'weston-start' script redcues the code duplication for SysV and SystemD based images. (From OE-Core rev: 1963dfb002b9e0b4bff02dbf783909102ca59719) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/wayland/weston-init')
-rw-r--r--meta/recipes-graphics/wayland/weston-init/init9
-rwxr-xr-xmeta/recipes-graphics/wayland/weston-init/weston-start36
-rw-r--r--meta/recipes-graphics/wayland/weston-init/weston.service5
3 files changed, 38 insertions, 12 deletions
diff --git a/meta/recipes-graphics/wayland/weston-init/init b/meta/recipes-graphics/wayland/weston-init/init
index 2e938f4307..5c925f4541 100644
--- a/meta/recipes-graphics/wayland/weston-init/init
+++ b/meta/recipes-graphics/wayland/weston-init/init
@@ -31,14 +31,7 @@ case "$1" in
31 start) 31 start)
32 . /etc/profile 32 . /etc/profile
33 33
34 # This is all a nasty hack 34 weston-start -s -- $OPTARGS
35 if test -z "$XDG_RUNTIME_DIR"; then
36 export XDG_RUNTIME_DIR=/run/user/root
37 mkdir --parents $XDG_RUNTIME_DIR
38 chmod 0700 $XDG_RUNTIME_DIR
39 fi
40
41 openvt -s weston -- $OPTARGS
42 ;; 35 ;;
43 36
44 stop) 37 stop)
diff --git a/meta/recipes-graphics/wayland/weston-init/weston-start b/meta/recipes-graphics/wayland/weston-init/weston-start
new file mode 100755
index 0000000000..b791fd5a9b
--- /dev/null
+++ b/meta/recipes-graphics/wayland/weston-init/weston-start
@@ -0,0 +1,36 @@
1#!/bin/sh
2# Copyright (C) 2016 O.S. Systems Software LTDA.
3
4export PATH="/sbin:/usr/sbin:/bin:/usr/bin"
5
6usage() {
7 cat <<EOF
8 $0 <openvt arguments> -- <weston options>
9EOF
10}
11
12if test $# -lt 2; then
13 usage
14 exit 1
15fi
16
17openvt_args=""
18while [ -n "$1" ]; do
19 openvt_args="$openvt_args $1"
20 shift
21
22 if [ "$1" = "--" ]; then
23 shift
24 break
25 fi
26done
27
28weston_args=$*
29
30if test -z "$XDG_RUNTIME_DIR"; then
31 export XDG_RUNTIME_DIR=/run/user/`id -u`
32 mkdir --parents $XDG_RUNTIME_DIR
33 chmod 0700 $XDG_RUNTIME_DIR
34fi
35
36exec openvt $openvt_args -- weston $weston_args --log=/var/log/weston.log
diff --git a/meta/recipes-graphics/wayland/weston-init/weston.service b/meta/recipes-graphics/wayland/weston-init/weston.service
index 12aedb7935..689ce41064 100644
--- a/meta/recipes-graphics/wayland/weston-init/weston.service
+++ b/meta/recipes-graphics/wayland/weston-init/weston.service
@@ -5,10 +5,7 @@ RequiresMountsFor=/run
5[Service] 5[Service]
6User=root 6User=root
7EnvironmentFile=-/etc/default/weston 7EnvironmentFile=-/etc/default/weston
8Environment="XDG_RUNTIME_DIR=/run/user/root" 8ExecStart=/usr/bin/weston-start -v -e -- $OPTARGS
9ExecStartPre=/bin/mkdir -p /run/user/root
10ExecStartPre=/bin/chmod 0700 /run/user/root
11ExecStart=/usr/bin/openvt -v -e /usr/bin/weston -- $OPTARGS
12 9
13[Install] 10[Install]
14WantedBy=multi-user.target 11WantedBy=multi-user.target