mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 22:31:32 +02:00
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 &
|
||
|
}
|