aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ti/matrix-gui-e/dm365-evm/init
diff options
context:
space:
mode:
authorChase Maupin <chase.maupin@ti.com>2010-05-27 10:54:49 -0500
committerKoen Kooi <koen@openembedded.org>2010-05-28 09:21:14 +0200
commit8c348ea2a4e7a5351a902c09938fbad4548eeafa (patch)
tree5337d07d7679890d5f9d04f2771f24b1d1225aa1 /recipes/ti/matrix-gui-e/dm365-evm/init
parenta9172ffa7ae4408c176b4b5643fd70a69411114b (diff)
downloadopenembedded-8c348ea2a4e7a5351a902c09938fbad4548eeafa.tar.gz
matrix-gui-e_svn: Changed executable name
* Upgraded to the latest source revision * Changed the executable name in the recipe and scripts to allow it to co-exist with the X11 version to be added later. Acked-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Chase Maupin <chase.maupin@ti.com> Signed-off-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes/ti/matrix-gui-e/dm365-evm/init')
-rwxr-xr-xrecipes/ti/matrix-gui-e/dm365-evm/init8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/ti/matrix-gui-e/dm365-evm/init b/recipes/ti/matrix-gui-e/dm365-evm/init
index b0e56ffd32..cd1291330d 100755
--- a/recipes/ti/matrix-gui-e/dm365-evm/init
+++ b/recipes/ti/matrix-gui-e/dm365-evm/init
@@ -1,5 +1,5 @@
#! /bin/sh
-matrixgui="/usr/bin/matrix_gui"
+matrixgui="/usr/bin/matrix_guiE"
GUI_OPTS="-qws -geometry 720x480+0+10 -display transformed:Rot0 /usr/share/matrix/html/menu_main.html"
test -x "$matrixgui" || exit 0
@@ -10,16 +10,16 @@ case "$1" in
echo 480P-60 > /sys/class/davinci_display/ch0/mode
echo COMPONENT > /sys/class/davinci_display/ch0/output
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