diff options
author | Koen Kooi <koen@openembedded.org> | 2010-05-04 08:30:33 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-05-04 08:30:33 +0200 |
commit | 7d2d7e0e9f6492aaadf0d6be26e7663e3310b5c9 (patch) | |
tree | c9bcb31a1bec81da50a77061bf7f2cdabf6c2f7f /recipes/ti/matrix-gui/init | |
parent | b8bc13a12d46d461c0a0ace1d9dce37dc816e741 (diff) |
matrix-gui: update to latest svn
Diffstat (limited to 'recipes/ti/matrix-gui/init')
-rwxr-xr-x | recipes/ti/matrix-gui/init | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/ti/matrix-gui/init b/recipes/ti/matrix-gui/init index fc2aacf5e8..9cd7412e28 100755 --- a/recipes/ti/matrix-gui/init +++ b/recipes/ti/matrix-gui/init @@ -1,6 +1,7 @@ #! /bin/sh matrixgui="/usr/bin/matrix_gui" +GUI_OPTS="-qws -display transformed:Rot90 /usr/share/matrix/html/menu_main.html" test -x "$matrixgui" || exit 0 @@ -16,7 +17,7 @@ case "$1" in if [ ! -f /etc/pointercal ] ; then ts_calibrate fi - start-stop-daemon --start --quiet --background --exec $matrixgui + start-stop-daemon --start --quiet --background --pidfile /var/run/matrix-gui.pid --exec $matrixgui -- $GUI_OPTS echo "." ;; stop) |