summaryrefslogtreecommitdiffstats
path: root/package/om2p-watchdog/files
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-01-04 17:30:42 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-01-04 17:30:42 +0000
commit331431beeb5254e016385b76cf7b348e53009a41 (patch)
treef7d17f1281c0d84e060422fe2218caad69ac0907 /package/om2p-watchdog/files
parent7e491e9a720265b21021407cc20bff038aa6b00e (diff)
package: remove the om2p-watchdog package
Signed-off-by: Antonio Quartulli <ordex@autistici.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29649 3c298f89-4303-0410-b956-a3cf2f4a3e73
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, 0 insertions, 27 deletions
diff --git a/package/om2p-watchdog/files/om2p-watchdog b/package/om2p-watchdog/files/om2p-watchdog
deleted file mode 100755
index 9f861f6a2..000000000
--- a/package/om2p-watchdog/files/om2p-watchdog
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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
deleted file mode 100755
index ddec85f7a..000000000
--- a/package/om2p-watchdog/files/om2p-watchdog.init
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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 &
-}