mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 00:24:40 +02:00
29cb2db261
Based on a patch by: Marek Lindner <lindner_marek@yahoo.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28972 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
186 B
Bash
Executable File
15 lines
186 B
Bash
Executable File
#!/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 &
|
|
}
|