diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-09-01 17:06:27 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-09-01 17:06:27 +0000 |
commit | 9422e41fd85a38500b63752658671e5445f46b63 (patch) | |
tree | 8846b4d6028258f0c41281793d53ce167fa2e5db /sys/dev/bluetooth/files.bluetooth | |
parent | 584ab1ffd445243cb95c6e743d7aad93e184456d (diff) |
- Add bthidev(4), from NetBSD.
- Make btms(4) and btkbd(4) compile.
- Removed remaining proplib NetBSD'sim
Prodded a while ago by gwk@. Eyeballed by miod@.
Diffstat (limited to 'sys/dev/bluetooth/files.bluetooth')
-rw-r--r-- | sys/dev/bluetooth/files.bluetooth | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/sys/dev/bluetooth/files.bluetooth b/sys/dev/bluetooth/files.bluetooth index e32ab21f4ae..4de928086af 100644 --- a/sys/dev/bluetooth/files.bluetooth +++ b/sys/dev/bluetooth/files.bluetooth @@ -1,4 +1,4 @@ -# $OpenBSD: files.bluetooth,v 1.4 2007/07/23 22:42:27 mk Exp $ +# $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. @@ -6,3 +6,22 @@ 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 |