diff options
author | Michael Büsch <mb@bu3sch.de> | 2011-03-06 10:45:24 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2011-03-06 10:45:24 +0000 |
commit | e3df1bc25af6de50937fa80ef8f0aa0965fd1837 (patch) | |
tree | ac515c7bb291836aacb7c6c41ccd532b6d8438f1 | |
parent | a91b3a7fc045d4cbb4d115ae0d1c55a1ca74ce60 (diff) | |
download | upstream-e3df1bc25af6de50937fa80ef8f0aa0965fd1837.tar.gz upstream-e3df1bc25af6de50937fa80ef8f0aa0965fd1837.tar.bz2 upstream-e3df1bc25af6de50937fa80ef8f0aa0965fd1837.zip |
omap24xx: Set hardware watchdog timeout to max
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25883 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | target/linux/omap24xx/base-files/etc/init.d/watchdog | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/omap24xx/base-files/etc/init.d/watchdog b/target/linux/omap24xx/base-files/etc/init.d/watchdog index d1ad1a1752..0d042c64ea 100755 --- a/target/linux/omap24xx/base-files/etc/init.d/watchdog +++ b/target/linux/omap24xx/base-files/etc/init.d/watchdog @@ -8,7 +8,7 @@ start() { echo "WARNING: Watchdog not available. System will reboot soon!" return 1 } - /sbin/watchdog -T 60 -t 50 /dev/watchdog + /sbin/watchdog -T 63 -t 50 /dev/watchdog [ -x /usr/bin/schedtool ] && /usr/bin/schedtool -R -p 60 -n -20 $(pidof watchdog) } |