summaryrefslogtreecommitdiff
path: root/recipes/ti/matrix-gui-e/init
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/ti/matrix-gui-e/init')
-rwxr-xr-xrecipes/ti/matrix-gui-e/init8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/ti/matrix-gui-e/init b/recipes/ti/matrix-gui-e/init
index 8259417cca..8a1c77e965 100755
--- a/recipes/ti/matrix-gui-e/init
+++ b/recipes/ti/matrix-gui-e/init
@@ -1,6 +1,6 @@
#! /bin/sh
-matrixgui="/usr/bin/matrix_gui"
+matrixgui="/usr/bin/matrix_guiE"
GUI_OPTS="-qws -display transformed:Rot90 /usr/share/matrix/html/menu_main.html"
test -x "$matrixgui" || exit 0
@@ -16,16 +16,16 @@ case "$1" in
echo "."
fi
echo -n "Starting Matrix GUI application"
- start-stop-daemon --start --quiet --background --pidfile /var/run/matrix-gui.pid --exec $matrixgui -- $GUI_OPTS
+ start-stop-daemon --start --quiet --background --pidfile /var/run/matrix-gui-e.pid --exec $matrixgui -- $GUI_OPTS
echo "."
;;
stop)
echo -n "Stopping Matrix GUI application"
- start-stop-daemon --stop --quiet --pidfile /var/run/matrix-gui.pid
+ start-stop-daemon --stop --quiet --pidfile /var/run/matrix-gui-e.pid
echo "."
;;
*)
- echo "Usage: /etc/init.d/matrix-gui {start|stop}"
+ echo "Usage: /etc/init.d/matrix-gui-e {start|stop}"
exit 1
esac