summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-graphics/wayland/weston-init/init6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/weston-init/init b/meta/recipes-graphics/wayland/weston-init/init
index 8e662e00a5..2e938f4307 100644
--- a/meta/recipes-graphics/wayland/weston-init/init
+++ b/meta/recipes-graphics/wayland/weston-init/init
@@ -8,6 +8,10 @@
8# Default-Stop: 0 1 6 8# Default-Stop: 0 1 6
9### END INIT INFO 9### END INIT INFO
10 10
11if test -e /etc/default/weston ; then
12 . /etc/default/weston
13fi
14
11killproc() { 15killproc() {
12 pid=`/bin/pidof $1` 16 pid=`/bin/pidof $1`
13 [ "$pid" != "" ] && kill $pid 17 [ "$pid" != "" ] && kill $pid
@@ -34,7 +38,7 @@ case "$1" in
34 chmod 0700 $XDG_RUNTIME_DIR 38 chmod 0700 $XDG_RUNTIME_DIR
35 fi 39 fi
36 40
37 openvt -s weston 41 openvt -s weston -- $OPTARGS
38 ;; 42 ;;
39 43
40 stop) 44 stop)