mirror of
				https://github.com/Telecominfraproject/wlan-ap.git
				synced 2025-10-30 01:52:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			228 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			228 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh /etc/rc.common
 | |
| # Copyright (C) 2007 OpenWrt.org
 | |
| 
 | |
| #start after dbus (60)
 | |
| START=62
 | |
| USE_PROCD=1
 | |
| PROG=/usr/bin/bluetoothd
 | |
| 
 | |
| start_service() {
 | |
| 	procd_open_instance
 | |
| 	procd_set_param command "$PROG" -n
 | |
| 	procd_close_instance
 | |
| }
 | 
