From owner-cvs-all@FreeBSD.ORG Fri Apr 9 17:18:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51CEB16A4CE; Fri, 9 Apr 2004 17:18:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 327E343D2F; Fri, 9 Apr 2004 17:18:01 -0700 (PDT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3A0I1Ge096340; Fri, 9 Apr 2004 17:18:01 -0700 (PDT) (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3A0I02o096339; Fri, 9 Apr 2004 17:18:00 -0700 (PDT) (envelope-from emax) Message-Id: <200404100018.i3A0I02o096339@repoman.freebsd.org> From: Maksim Yevmenkin Date: Fri, 9 Apr 2004 17:18:00 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/bluetooth/bthidcontrol Makefilebthidcontrol.8 bthidcontrol.c bthidcontrol.h hid.c sdp.c src/usr.sbin/bluetooth/bthidd Makefile bthid_config.h bthidd.c bthidd.conf.sample bthidd.h client.c hid.c lexer.l parser.y ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Apr 2004 00:18:01 -0000 emax 2004/04/09 17:18:00 PDT FreeBSD src repository Added files: usr.sbin/bluetooth/bthidcontrol Makefile bthidcontrol.8 bthidcontrol.c bthidcontrol.h hid.c sdp.c usr.sbin/bluetooth/bthidd Makefile bthid_config.h bthidd.c bthidd.conf.sample bthidd.h client.c hid.c lexer.l parser.y server.c session.c Log: Start committing Bluetooth HID (Human Interface Device) support. Note: bthidd(8) is still not complete. Need to commit kernel support (a-la Linux /dev/input) to feed HID events into kernel. Also need to write bthidd(8) and bthidd.conf(5) man pages. Revision Changes Path 1.1 +15 -0 src/usr.sbin/bluetooth/bthidcontrol/Makefile (new) 1.1 +99 -0 src/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.8 (new) 1.1 +208 -0 src/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.c (new) 1.1 +50 -0 src/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.h (new) 1.1 +209 -0 src/usr.sbin/bluetooth/bthidcontrol/hid.c (new) 1.1 +432 -0 src/usr.sbin/bluetooth/bthidcontrol/sdp.c (new) 1.1 +14 -0 src/usr.sbin/bluetooth/bthidd/Makefile (new) 1.1 +67 -0 src/usr.sbin/bluetooth/bthidd/bthid_config.h (new) 1.1 +256 -0 src/usr.sbin/bluetooth/bthidd/bthidd.c (new) 1.1 +72 -0 src/usr.sbin/bluetooth/bthidd/bthidd.conf.sample (new) 1.1 +88 -0 src/usr.sbin/bluetooth/bthidd/bthidd.h (new) 1.1 +244 -0 src/usr.sbin/bluetooth/bthidd/client.c (new) 1.1 +262 -0 src/usr.sbin/bluetooth/bthidd/hid.c (new) 1.1 +100 -0 src/usr.sbin/bluetooth/bthidd/lexer.l (new) 1.1 +447 -0 src/usr.sbin/bluetooth/bthidd/parser.y (new) 1.1 +316 -0 src/usr.sbin/bluetooth/bthidd/server.c (new) 1.1 +136 -0 src/usr.sbin/bluetooth/bthidd/session.c (new)