blob: 4de928086af3e96e460826f8bbcc71ce03754a2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $OpenBSD: files.bluetooth,v 1.5 2007/09/01 17:06:26 xsa Exp $
#
# Config file and device description for machine-independent Bluetooth code.
# Included by ports that support Bluetooth host controllers.
device bthub {}
attach bthub at btbus
file dev/bluetooth/bthub.c bthub needs-flag
# HID
# HID "bus"
define bthidbus {[ reportid = -1 ]}
# HID Device
device bthidev: bluetooth, bthidbus, hid
attach bthidev at bthub
file dev/bluetooth/bthidev.c bthidev
# HID Mice
device btms: hid, wsmousedev
attach btms at bthidbus
file dev/bluetooth/btms.c btms
# HID Keyboard
device btkbd: hid, wskbddev
attach btkbd at bthidbus
file dev/bluetooth/btkbd.c btkbd
|