diff options
Diffstat (limited to 'meta-extras/packages/bluez/files/hcid.conf')
-rw-r--r-- | meta-extras/packages/bluez/files/hcid.conf | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/meta-extras/packages/bluez/files/hcid.conf b/meta-extras/packages/bluez/files/hcid.conf deleted file mode 100644 index 44e9c46fb0..0000000000 --- a/meta-extras/packages/bluez/files/hcid.conf +++ /dev/null | |||
@@ -1,72 +0,0 @@ | |||
1 | # | ||
2 | # HCI daemon configuration file. | ||
3 | # | ||
4 | # $Id: hcid.conf,v 1.4 2004/04/29 20:14:21 holtmann Exp $ | ||
5 | # | ||
6 | |||
7 | # HCId options | ||
8 | options { | ||
9 | # Automatically initialize new devices | ||
10 | autoinit yes; | ||
11 | |||
12 | # Security Manager mode | ||
13 | # none - Security manager disabled | ||
14 | # auto - Use local PIN for incoming connections | ||
15 | # user - Always ask user for a PIN | ||
16 | # | ||
17 | security auto; | ||
18 | |||
19 | # Pairing mode | ||
20 | # none - Pairing disabled | ||
21 | # multi - Allow pairing with already paired devices | ||
22 | # once - Pair once and deny successive attempts | ||
23 | pairing multi; | ||
24 | |||
25 | # PIN helper | ||
26 | pin_helper /bin/bluepin; | ||
27 | |||
28 | # D-Bus PIN helper | ||
29 | # dbus_pin_helper; | ||
30 | } | ||
31 | |||
32 | # Default settings for HCI devices | ||
33 | device { | ||
34 | # Local device name | ||
35 | # %d - device id | ||
36 | # %h - host name | ||
37 | name "%h"; | ||
38 | |||
39 | # Local device class | ||
40 | class 0x120112; | ||
41 | |||
42 | # Default packet type | ||
43 | #pkt_type DH1,DM1,HV1; | ||
44 | |||
45 | # Inquiry and Page scan | ||
46 | iscan enable; pscan enable; | ||
47 | |||
48 | # Default link mode | ||
49 | # none - no specific policy | ||
50 | # accept - always accept incoming connections | ||
51 | # master - become master on incoming connections, | ||
52 | # deny role switch on outgoing connections | ||
53 | # | ||
54 | #lm accept,master; | ||
55 | # | ||
56 | lm accept; | ||
57 | |||
58 | # Default link policy | ||
59 | # none - no specific policy | ||
60 | # rswitch - allow role switch | ||
61 | # hold - allow hold mode | ||
62 | # sniff - allow sniff mode | ||
63 | # park - allow park mode | ||
64 | # | ||
65 | #lp hold,sniff; | ||
66 | # | ||
67 | lp rswitch,hold,sniff,park; | ||
68 | |||
69 | # Authentication and Encryption | ||
70 | #auth enable; | ||
71 | encrypt enable; | ||
72 | } | ||