diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-11-12 10:54:06 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-11-12 10:54:06 +0000 |
commit | 0939419e24fe8834b6237601573dee6a28b72b8a (patch) | |
tree | a6ad323ed3a5014deadae5cf41fa306bb0d82bd9 /package/om2p-watchdog/files/om2p-watchdog.init | |
parent | 8687fc3e4115114ebe0819f46d965b2664e2413a (diff) | |
download | mtk-20170518-0939419e24fe8834b6237601573dee6a28b72b8a.zip mtk-20170518-0939419e24fe8834b6237601573dee6a28b72b8a.tar.gz mtk-20170518-0939419e24fe8834b6237601573dee6a28b72b8a.tar.bz2 |
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/om2p-watchdog.init')
-rwxr-xr-x | package/om2p-watchdog/files/om2p-watchdog.init | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/om2p-watchdog/files/om2p-watchdog.init b/package/om2p-watchdog/files/om2p-watchdog.init new file mode 100755 index 0000000..ddec85f --- /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 & +} |