From: Otavio Salvador Date: Wed, 18 May 2016 16:40:44 +0000 (-0300) Subject: weston-init: Error out if loading a nested instance X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71b356669268a2210f159287bdc2be53e4f3fdf7;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git weston-init: Error out if loading a nested instance The Weston nested instance support is not implemented. This errors out displaying an informative error message so someone insterested on it may look at implement this later. (From OE-Core rev: 2332f93ae88ca4e4a5aac1806f21104b6489b3bb) Signed-off-by: Otavio Salvador Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-graphics/wayland/weston-init/weston-start b/meta/recipes-graphics/wayland/weston-init/weston-start index b791fd5a9b0..dc2b1efc780 100755 --- a/meta/recipes-graphics/wayland/weston-init/weston-start +++ b/meta/recipes-graphics/wayland/weston-init/weston-start @@ -14,6 +14,11 @@ if test $# -lt 2; then 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"