diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2016-05-18 13:40:43 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-21 22:24:55 +0100 |
commit | 2f0283ab0d5e1065931b954dfea905cbc9edb720 (patch) | |
tree | d49c496da029660865b2d70a4477df399ba40036 /meta/recipes-graphics/wayland/weston-init/weston-start | |
parent | d46c5beedca8630e5080401925cb7902edf55efe (diff) | |
download | poky-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/weston-start')
-rwxr-xr-x | meta/recipes-graphics/wayland/weston-init/weston-start | 36 |
1 files changed, 36 insertions, 0 deletions
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 | |||
4 | export PATH="/sbin:/usr/sbin:/bin:/usr/bin" | ||
5 | |||
6 | usage() { | ||
7 | cat <<EOF | ||
8 | $0 <openvt arguments> -- <weston options> | ||
9 | EOF | ||
10 | } | ||
11 | |||
12 | if test $# -lt 2; then | ||
13 | usage | ||
14 | exit 1 | ||
15 | fi | ||
16 | |||
17 | openvt_args="" | ||
18 | while [ -n "$1" ]; do | ||
19 | openvt_args="$openvt_args $1" | ||
20 | shift | ||
21 | |||
22 | if [ "$1" = "--" ]; then | ||
23 | shift | ||
24 | break | ||
25 | fi | ||
26 | done | ||
27 | |||
28 | weston_args=$* | ||
29 | |||
30 | if 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 | ||
34 | fi | ||
35 | |||
36 | exec openvt $openvt_args -- weston $weston_args --log=/var/log/weston.log | ||