Root/package/system/om-watchdog/files/om-watchdog.init

1#!/bin/sh /etc/rc.common
2#
3# Copyright (C) 2011 OpenWrt.org
4#
5
6START=11
7
8SERVICE_DAEMONIZE=1
9
10boot() {
11    if [ -r /lib/ar71xx.sh ]; then
12        . /lib/ar71xx.sh
13        local board=$(ar71xx_board_name)
14
15        case "$board" in
16            "om2p"|"om2p-hs")
17                service_start /sbin/om-watchdog 12
18                ;;
19            "om2p-lc")
20                service_start /sbin/om-watchdog 26
21                ;;
22        esac
23    else
24        #we assume it is om1p in this case
25        service_start /sbin/om-watchdog 3
26    fi
27}
28

Archive Download this file



interactive