summaryrefslogtreecommitdiffstats
path: root/package/om2p-watchdog/files
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-11-12 10:54:06 +0000
committerGabor Juhos <juhosg@openwrt.org>2011-11-12 10:54:06 +0000
commit0939419e24fe8834b6237601573dee6a28b72b8a (patch)
treea6ad323ed3a5014deadae5cf41fa306bb0d82bd9 /package/om2p-watchdog/files
parent8687fc3e4115114ebe0819f46d965b2664e2413a (diff)
downloadmaster-31e0f0ae-0939419e24fe8834b6237601573dee6a28b72b8a.tar.gz
master-31e0f0ae-0939419e24fe8834b6237601573dee6a28b72b8a.tar.bz2
master-31e0f0ae-0939419e24fe8834b6237601573dee6a28b72b8a.zip
package: add om2p-watchdog script
Based on a patch by: Marek Lindner <lindner_marek@yahoo.de> SVN-Revision: 28972
Diffstat (limited to 'package/om2p-watchdog/files')
-rwxr-xr-xpackage/om2p-watchdog/files/om2p-watchdog13
-rwxr-xr-xpackage/om2p-watchdog/files/om2p-watchdog.init14
2 files changed, 27 insertions, 0 deletions
diff --git a/package/om2p-watchdog/files/om2p-watchdog b/package/om2p-watchdog/files/om2p-watchdog
new file mode 100755
index 0000000000..9f861f6a20
--- /dev/null
+++ b/package/om2p-watchdog/files/om2p-watchdog
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+GPIO=12
+
+echo $GPIO > /sys/class/gpio/export
+echo out > /sys/class/gpio/gpio${GPIO}/direction
+
+while true; do
+ echo 1 > /sys/class/gpio/gpio${GPIO}/value
+ sleep 1
+ echo 0 > /sys/class/gpio/gpio${GPIO}/value
+ sleep 180
+done
diff --git a/package/om2p-watchdog/files/om2p-watchdog.init b/package/om2p-watchdog/files/om2p-watchdog.init
new file mode 100755
index 0000000000..ddec85f7a0
--- /dev/null
+++ b/package/om2p-watchdog/files/om2p-watchdog.init
@@ -0,0 +1,14 @@
+#!/bin/sh /etc/rc.common
+#
+# Copyright (C) 2011 OpenWrt.org
+#
+
+START=11
+
+boot() {
+ . /lib/ar71xx.sh
+
+ local board=$(ar71xx_board_name)
+
+ [ "$board" = "om2p" ] && /sbin/om2p-watchdog &
+}