mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 14:04:26 -04:00 
			
		
		
		
	this proto handler will detect which of 3g, qmi, mbim, ncm or directip you need for a stick and setup uci automagically Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 42837
		
			
				
	
	
		
			19 lines
		
	
	
		
			399 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			399 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| [ "$ACTION" = add -a "$DEVTYPE" = usb_device ] || exit 0
 | |
| 
 | |
| vid=$(cat /sys$DEVPATH/idVendor)
 | |
| pid=$(cat /sys$DEVPATH/idProduct)
 | |
| [ -f "/lib/network/wwan/$vid:$pid" ] || exit 0
 | |
| 
 | |
| find_wwan_iface() {
 | |
| 	local cfg="$1"
 | |
| 	local proto
 | |
| 	config_get proto "$cfg" proto
 | |
| 	[ "$proto" = wwan ] || return 0
 | |
| 	proto_set_available "$cfg" 1
 | |
| 	ifup $cfg
 | |
| 	exit 0
 | |
| }
 | |
| 
 | |
| config_load network
 | |
| config_foreach find_wwan_iface interface
 |