busybox watchdog applet should stop the watchdog before shutting down SVN-Revision: 21341
		
			
				
	
	
		
			13 lines
		
	
	
		
			214 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			214 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh /etc/rc.common
 | 
						|
# Copyright (C) 2008-2010 OpenWrt.org
 | 
						|
 | 
						|
START=97
 | 
						|
start() {
 | 
						|
        [ -c /dev/watchdog ] && [ -x /sbin/watchdog ] && \
 | 
						|
        	watchdog -t 5 /dev/watchdog
 | 
						|
}
 | 
						|
 | 
						|
stop() {
 | 
						|
	killall -q watchdog
 | 
						|
}
 |