mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 21:44:27 -04:00 
			
		
		
		
	* add pivot root support * add back a /etc/init.d/fstab * add "block mount/umount" support * add anonymous swap/mount support * add auto swap/mount support * fix superflous error when inserting modules * add back jffs2reset/jffs2mark Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37057
		
			
				
	
	
		
			15 lines
		
	
	
		
			341 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			341 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh /etc/rc.common
 | |
| # (C) 2013 openwrt.org
 | |
| 
 | |
| START=40
 | |
| 
 | |
| start() {                            
 | |
| 	echo "this file has been obseleted. please call \"/sbin/block mount\" directly"
 | |
| 	/sbin/block mount
 | |
| }
 | |
| 
 | |
| stop() {                            
 | |
| 	echo "this file has been obseleted. please call \"/sbin/block umount\" directly"
 | |
| 	/sbin/block umount
 | |
| }
 |