diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-08-15 13:27:55 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-08-15 13:27:55 +0000 |
commit | bd00d48fe2d0b6769f0272cecf8f4089db3b55cd (patch) | |
tree | 4fb9cec50862d4a699a4f21f7572ebaa25e3198f /package/om-watchdog/files | |
parent | 5d84dabf0fb4aea693b9522c84d951a6e7da8740 (diff) | |
download | upstream-bd00d48fe2d0b6769f0272cecf8f4089db3b55cd.tar.gz upstream-bd00d48fe2d0b6769f0272cecf8f4089db3b55cd.tar.bz2 upstream-bd00d48fe2d0b6769f0272cecf8f4089db3b55cd.zip |
package/om-watchdog: start service only on the om2p/om2p-lc boards on ar71xx
If the package is installed, it starts the watchdog daemon
on every ar71xx based board.
SVN-Revision: 33194
Diffstat (limited to 'package/om-watchdog/files')
-rw-r--r-- | package/om-watchdog/files/om-watchdog.init | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/om-watchdog/files/om-watchdog.init b/package/om-watchdog/files/om-watchdog.init index f4d9d4432e..3d2666b214 100644 --- a/package/om-watchdog/files/om-watchdog.init +++ b/package/om-watchdog/files/om-watchdog.init @@ -11,12 +11,12 @@ boot() { if [ -r /lib/ar71xx.sh ]; then . /lib/ar71xx.sh local board=$(ar71xx_board_name) - fi - if [ "$board" = "om2p" ]; then - service_start /sbin/om-watchdog 12 - elif [ "$board" = "om2p-lc" ]; then - service_start /sbin/om-watchdog 26 + if [ "$board" = "om2p" ]; then + service_start /sbin/om-watchdog 12 + elif [ "$board" = "om2p-lc" ]; then + service_start /sbin/om-watchdog 26 + fi else #we assume it is om1p in this case service_start /sbin/om-watchdog 3 |