mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			251 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			251 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
include /lib/network
 | 
						|
config_load network
 | 
						|
scan_interfaces
 | 
						|
config_get proto "$INTERFACE" proto
 | 
						|
[ "$proto" = "3g" ] && {
 | 
						|
	config_get iface "$INTERFACE" ifname
 | 
						|
	case "$ACTION" in
 | 
						|
		ifup)
 | 
						|
			set_3g_led 1 1 0
 | 
						|
		;;
 | 
						|
		ifdown)
 | 
						|
			set_3g_led 0 0 0
 | 
						|
		;;
 | 
						|
	esac
 | 
						|
}
 |