mirror of https://github.com/hak5/openwrt.git
15 lines
186 B
Plaintext
15 lines
186 B
Plaintext
|
#!/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 &
|
||
|
}
|