aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/wayland/weston-init/weston-start
blob: b791fd5a9b03212aa330c112d9e5a854ae15cfea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
# Copyright (C) 2016 O.S. Systems Software LTDA.

export PATH="/sbin:/usr/sbin:/bin:/usr/bin"

usage() {
    cat <<EOF
    $0 <openvt arguments> -- <weston options>
EOF
}

if test $# -lt 2; then
	usage
	exit 1
fi

openvt_args=""
while [ -n "$1" ]; do
	openvt_args="$openvt_args $1"
	shift

	if [ "$1" = "--" ]; then
		shift
		break
	fi
done

weston_args=$*

if test -z "$XDG_RUNTIME_DIR"; then
    export XDG_RUNTIME_DIR=/run/user/`id -u`
    mkdir --parents $XDG_RUNTIME_DIR
    chmod 0700 $XDG_RUNTIME_DIR
fi

exec openvt $openvt_args -- weston $weston_args --log=/var/log/weston.log