aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/wayland/weston-init/weston-start
blob: dc2b1efc7806908d84fb65ebc168599b6807099d (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
37
38
39
40
41
#!/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

if [ -n "$WAYLAND_DISPLAY" ]; then
	echo "ERROR: A Wayland compositor is already running, nested Weston instance is not supported yet."
	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