mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-04 06:54:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			115 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			115 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
check_skip() {
 | 
						|
    if [ "$firstboot_skip_next" = "true" ]; then
 | 
						|
	return 0
 | 
						|
    else 
 | 
						|
	return 1
 | 
						|
    fi
 | 
						|
}
 | 
						|
 |