summaryrefslogtreecommitdiff
path: root/recipes/ti/freondemo
diff options
context:
space:
mode:
authorRoger Monk <r-monk@ti.com>2010-03-20 10:52:18 +0000
committerKoen Kooi <koen@openembedded.org>2010-04-12 19:43:27 +0200
commitd851b22811173569fc145bf8f9eb4c2ab95d7a0e (patch)
tree897e1e9fe6dd7a383e971dd91eb681ebec3a51c4 /recipes/ti/freondemo
parent91f4c88f233c26f434d182e0c00c22709a8496fb (diff)
gstd/freondemo: Align with arago file locations
* Move gstd and freondemo recipes to recipes/gstd /freondemo * Prepare for recipe sync * Later needs renaming and finding new (more appropriate) home Signed-off-by: Roger Monk <r-monk@ti.com> Signed-off-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes/ti/freondemo')
-rw-r--r--recipes/ti/freondemo/freondemo20
-rw-r--r--recipes/ti/freondemo/freondemo.init58
2 files changed, 0 insertions, 78 deletions
diff --git a/recipes/ti/freondemo/freondemo b/recipes/ti/freondemo/freondemo
deleted file mode 100644
index 80dd36e132..0000000000
--- a/recipes/ti/freondemo/freondemo
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-# We start a system wide gstd daemon
-gstd &
-
-amixer -q sset 'HP DAC' 127
-
-#If we detect a mouse, use it, otherwise configure the touchcreen
-if [ ! -c /dev/input/mice ] && [ ! -c /dev/input/mouse0 ] ; then
- if [ -c /dev/input/touchscreen0 ] ; then
- export TSLIB_TSDEVICE=/dev/input/touchscreen0
- if [ ! -f /etc/pointercal ] ; then
- # We need to calibrate the screen
- ts_calibrate
- fi
- export QWS_MOUSE_PROTO=tslib
- fi
-fi
-
-/usr/libexec/FreonDemo -qws &
diff --git a/recipes/ti/freondemo/freondemo.init b/recipes/ti/freondemo/freondemo.init
deleted file mode 100644
index 5cb5281245..0000000000
--- a/recipes/ti/freondemo/freondemo.init
+++ /dev/null
@@ -1,58 +0,0 @@
-#! /bin/sh
-
-set -e
-
-DAEMON=/usr/bin/freondemo
-NAME=freondemo
-PIDFILE=/var/run/freondemo/pid
-DESC="Freon Demo"
-PARAMS=""
-
-test -x $DAEMON || exit 0
-
-start_it_up()
-{
- if [ -e $PIDFILE ]; then
- PIDDIR=/proc/$(cat $PIDFILE)
- if [ -d ${PIDDIR} -a "$(readlink -f ${PIDDIR}/exe)" = "${DAEMON}" ]; then
- echo "$DESC already started; not starting."
- else
- echo "Removing stale PID file $PIDFILE."
- rm -f $PIDFILE
- fi
- fi
-
- source $SESSIONFILE
- echo -n "Starting $DESC: "
- start-stop-daemon --start --pidfile $PIDFILE \
- --exec $DAEMON -- $PARAMS
- echo "$NAME."
-}
-
-shut_it_down()
-{
- echo -n "Stopping $DESC: "
- start-stop-daemon --stop --oknodo --pidfile $PIDFILE
- echo "$NAME."
- rm -f $PIDFILE
-}
-
-case "$1" in
- start)
- start_it_up
- ;;
- stop)
- shut_it_down
- ;;
- restart)
- shut_it_down
- sleep 1
- start_it_up
- ;;
- *)
- echo "Usage: /etc/init.d/$NAME {start|stop|restart}" >&2
- exit 1
- ;;
-esac
-
-exit 0