b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | #!/bin/sh /etc/rc.common |
2 | # Copyright (C) 2007 OpenWrt.org | ||||
3 | |||||
4 | #start after dbus (60) | ||||
5 | START=62 | ||||
6 | USE_PROCD=1 | ||||
7 | PROG=/usr/bin/bluetoothd | ||||
8 | |||||
9 | start_service() { | ||||
10 | ln -snf /etc/bluetooth/keys/ /var/lib/bluetooth | ||||
11 | procd_open_instance | ||||
12 | procd_set_param command "$PROG" -n | ||||
13 | procd_close_instance | ||||
14 | } |