blob: 8c548bcdbff03f51155702bdfb10856cdc9abb02 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#!/bin/sh /etc/rc.common
2# Copyright (C) 2007 OpenWrt.org
3
4#start after dbus (60)
5START=62
6USE_PROCD=1
7PROG=/usr/bin/bluetoothd
8
9start_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}