tsmd: return of the old init script
authorSimon Busch <morphis@gravedo.de>
Fri, 25 Feb 2011 21:12:11 +0000 (22:12 +0100)
committerSimon Busch <morphis@gravedo.de>
Sun, 27 Feb 2011 12:32:50 +0000 (13:32 +0100)
Signed-off-by: Simon Busch <morphis@gravedo.de>
recipes/palmpre/tsmd/tsmd [new file with mode: 0755]
recipes/palmpre/tsmd_git.bb

diff --git a/recipes/palmpre/tsmd/tsmd b/recipes/palmpre/tsmd/tsmd
new file mode 100755 (executable)
index 0000000..5444d7b
--- /dev/null
@@ -0,0 +1,38 @@
+#! /bin/sh
+#
+# tsmd -- This shell script starts and stops the tsmd daemon
+#
+# chkconfig: 345 10 10
+# description: a simple utility daemon which forwards all events from a independent device node to a more general uinput one
+# processname: tsmd
+
+PATH=/bin:/usr/bin:/sbin:/usr/sbin
+NAME=tsmd
+
+case "$1" in
+    start)
+        echo -n "Starting tsmd: "
+        start-stop-daemon --start --pidfile /var/run/${NAME}.pid --make-pidfile --background -x /usr/bin/${NAME} -- -n /dev/touchscreen -f
+        if [ $? = 0 ]; then
+            echo "(ok)"
+        else
+            echo "(failed)"
+        fi
+        ;;
+    stop)
+        echo -n "Stopping tsmd: "
+        start-stop-daemon --stop --pidfile /var/run/${NAME}.pid --oknodo
+        rm -f /var/run/${NAME}.pid
+        echo "(done)"
+        ;;
+    restart|force-reload)
+        $0 stop
+        $0 start
+        ;;
+    *)
+        echo "Usage: /etc/init.d/tsmd {start|stop|restart|force-reload}"
+        exit 1
+        ;;
+esac
+
+exit 0
index eeac86d..a7c6054 100644 (file)
@@ -6,16 +6,25 @@ LICENSE = "GPL"
 
 DEPENDS = "tslib"
 
-PR = "r1"
+PR = "r2"
 PV = "1.0.0+gitr${SRCPV}"
 
 SRCREV = "9262a2e4f8f6e6c7bcacf1eeae0ad348cbfcce06"
 SRC_URI = " \
  ${FREESMARTPHONE_GIT}/utilities.git;protocol=git;branch=master \
+ file://tsmd \
 "
 
 S = "${WORKDIR}/git/palmpre/tsmd"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-inherit autotools
+inherit autotools update-rc.d
+
+INITSCRIPT_NAME = "tsmd"
+INITSCRIPT_PARAMS = "defaults 10"
+
+do_install_append() {
+       install -d 0644 ${D}${sysconfdir}/init.d/
+       install -m 0755 ${WORKDIR}/${INITSCRIPT_NAME} ${D}${sysconfdir}/init.d/
+}