From owner-cvs-src@FreeBSD.ORG Mon Oct 9 21:00:38 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E254B16A407; Mon, 9 Oct 2006 21:00:38 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD32643DBB; Mon, 9 Oct 2006 21:00:18 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k99L0IiX079878; Mon, 9 Oct 2006 21:00:18 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k99L0Ixn079868; Mon, 9 Oct 2006 21:00:18 GMT (envelope-from emax) Message-Id: <200610092100.k99L0Ixn079868@repoman.freebsd.org> From: Maksim Yevmenkin Date: Mon, 9 Oct 2006 21:00:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/etc/defaults rc.conf src/etc/mtree BSD.include.dist src/etc/rc.d Makefile bthidd src/include Makefile src/usr.sbin/bluetooth Makefile src/usr.sbin/bluetooth/bthidd Makefile bthid_config.h bthidd.8 bthidd.c bthidd.conf.sample ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Oct 2006 21:00:39 -0000 emax 2006-10-09 21:00:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) etc/defaults rc.conf etc/mtree BSD.include.dist etc/rc.d Makefile include Makefile usr.sbin/bluetooth Makefile usr.sbin/bluetooth/bthidd Makefile bthid_config.h bthidd.c bthidd.conf.sample bthidd.h client.c hid.c kbd.c kbd.h lexer.l parser.y server.c session.c Added files: (Branch: RELENG_6) etc/rc.d bthidd usr.sbin/bluetooth/bthidd bthidd.8 Log: MFC: Install vkbd(4) header into dev/vkbd. Update bthidd(8) code and hook it up to the build. bthidd(8) now was integrated with vkbd(4) and supports multiple keyboards via vkbd(4)/kbdmux(4). The code was tested with Apple Bluetooth keyboard and SE k700i cell phone (remote control feature). Add bthidd(8) rc(8) script. Approved by: re (kensmith) Revision Changes Path 1.252.2.27 +4 -0 src/etc/defaults/rc.conf 1.100.2.4 +2 -0 src/etc/mtree/BSD.include.dist 1.53.2.12 +1 -1 src/etc/rc.d/Makefile 1.1.2.1 +33 -0 src/etc/rc.d/bthidd (new) 1.244.2.6 +1 -1 src/include/Makefile 1.6.8.1 +2 -0 src/usr.sbin/bluetooth/Makefile 1.4.2.1 +4 -4 src/usr.sbin/bluetooth/bthidd/Makefile 1.2.2.1 +12 -9 src/usr.sbin/bluetooth/bthidd/bthid_config.h 1.1.2.1 +128 -0 src/usr.sbin/bluetooth/bthidd/bthidd.8 (new) 1.3.2.2 +28 -62 src/usr.sbin/bluetooth/bthidd/bthidd.c 1.2.2.1 +0 -0 src/usr.sbin/bluetooth/bthidd/bthidd.conf.sample 1.2.2.1 +23 -23 src/usr.sbin/bluetooth/bthidd/bthidd.h 1.2.2.2 +33 -21 src/usr.sbin/bluetooth/bthidd/client.c 1.2.2.2 +57 -28 src/usr.sbin/bluetooth/bthidd/hid.c 1.1.2.2 +133 -146 src/usr.sbin/bluetooth/bthidd/kbd.c 1.1.2.1 +8 -8 src/usr.sbin/bluetooth/bthidd/kbd.h 1.2.2.1 +8 -4 src/usr.sbin/bluetooth/bthidd/lexer.l 1.4.2.1 +81 -53 src/usr.sbin/bluetooth/bthidd/parser.y 1.3.2.2 +65 -82 src/usr.sbin/bluetooth/bthidd/server.c 1.2.2.1 +62 -22 src/usr.sbin/bluetooth/bthidd/session.c