summaryrefslogtreecommitdiff
path: root/recipes/ti/matrix-gui/dm365-evm
diff options
context:
space:
mode:
authorChase Maupin <chase.maupin@ti.com>2010-05-27 10:51:44 -0500
committerKoen Kooi <koen@openembedded.org>2010-05-28 09:21:13 +0200
commita9172ffa7ae4408c176b4b5643fd70a69411114b (patch)
tree5869647cbf0e3d14381d949487abd51266f18e59 /recipes/ti/matrix-gui/dm365-evm
parentb4aa462e12b2c2920fc364581186b6c5b48424bd (diff)
matrix-gui-e_svn: Renamed matrix-gui_svn
* Renamed the matrix-gui_svn recipe to matrix-gui-e_svn to be more in line with naming conventions of other applications. This is in preparation for making and X11 version of the recipe. * Moved associated files 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/dm365-evm')
-rwxr-xr-xrecipes/ti/matrix-gui/dm365-evm/init26
1 files changed, 0 insertions, 26 deletions
diff --git a/recipes/ti/matrix-gui/dm365-evm/init b/recipes/ti/matrix-gui/dm365-evm/init
deleted file mode 100755
index b0e56ffd32..0000000000
--- a/recipes/ti/matrix-gui/dm365-evm/init
+++ /dev/null
@@ -1,26 +0,0 @@
-#! /bin/sh
-matrixgui="/usr/bin/matrix_gui"
-GUI_OPTS="-qws -geometry 720x480+0+10 -display transformed:Rot0 /usr/share/matrix/html/menu_main.html"
-
-test -x "$matrixgui" || exit 0
-
-case "$1" in
- start)
- # switch to component 480p mode
- 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
- echo "."
- ;;
- stop)
- echo -n "Stopping Matrix GUI application"
- start-stop-daemon --stop --quiet --pidfile /var/run/matrix-gui.pid
- echo "."
- ;;
- *)
- echo "Usage: /etc/init.d/matrix-gui {start|stop}"
- exit 1
-esac
-
-exit 0