diff options
author | Uwe Stuehler <uwe@cvs.openbsd.org> | 2008-11-26 21:48:31 +0000 |
---|---|---|
committer | Uwe Stuehler <uwe@cvs.openbsd.org> | 2008-11-26 21:48:31 +0000 |
commit | 6b70c2bf6263d559aa2a4acad332aa100c4842fd (patch) | |
tree | c06d9156fc59b38088faba76a14907fc166bf659 /usr.sbin/btd/Makefile | |
parent | 1df353ea76ac4b3d10cabbb363860357cbff0ff4 (diff) |
SDP works, but it needs to be redone (and non-blocking)
With this in bt.conf, the HID driver should work:
# Enable all interfaces.
interface * "OpenBSD BT"
# Attach a keyboard and/or mouse, or a mobile phone emulating such things.
attach 00:02:76:08:1c:37 type hid pin "0000"
Then start btd and run btctl -f bt.conf.
Diffstat (limited to 'usr.sbin/btd/Makefile')
-rw-r--r-- | usr.sbin/btd/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/btd/Makefile b/usr.sbin/btd/Makefile index 35ca5020fb8..0a9cf592838 100644 --- a/usr.sbin/btd/Makefile +++ b/usr.sbin/btd/Makefile @@ -1,8 +1,9 @@ -# $OpenBSD: Makefile,v 1.4 2008/11/26 15:32:56 uwe Exp $ +# $OpenBSD: Makefile,v 1.5 2008/11/26 21:48:30 uwe Exp $ PROG= btd SRCS= atomicio.c bt.c bt_subr.c btd.c conf.c control.c db.c \ - devinfo.c fdpass.c hci.c log.c sdp.c util.c + devinfo.c fdpass.c hci.c log.c sdp.c sdp_query.c \ + sdp_search.c util.c NOMAN= LDADD+= -levent -lusbhid |