diff options
author | Brijesh Singh <bksingh@ti.com> | 2010-05-10 17:56:15 -0500 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2010-05-10 19:47:13 -0400 |
commit | b0ccc12f3f1b8d8ec80e45c3ee08d5c0ae865dad (patch) | |
tree | face3f598acbe019fe0bed6ba42f2694e624bce9 /recipes/ti/matrix-gui | |
parent | b8e5860405cae09dabbd98a8d2b12752db90a373 (diff) |
matrix-gui_svn: add init script for dm365-evm.
* use default Rotation to 0 degrees.
* remove touch screen specific variables.
Signed-off-by: Brijesh Singh <bksingh@ti.com>
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Diffstat (limited to 'recipes/ti/matrix-gui')
-rwxr-xr-x | recipes/ti/matrix-gui/dm365-evm/init | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes/ti/matrix-gui/dm365-evm/init b/recipes/ti/matrix-gui/dm365-evm/init new file mode 100755 index 0000000000..b0e56ffd32 --- /dev/null +++ b/recipes/ti/matrix-gui/dm365-evm/init @@ -0,0 +1,26 @@ +#! /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 |