From owner-cvs-all Tue Nov 5 12:10:48 2002 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 7F16A37B401; Tue, 5 Nov 2002 12:10:45 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1942D43E3B; Tue, 5 Nov 2002 12:10:45 -0800 (PST) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gA5K8wmV058716; Tue, 5 Nov 2002 12:08:58 -0800 (PST) (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gA5K8we1058715; Tue, 5 Nov 2002 12:08:58 -0800 (PST) Message-Id: <200211052008.gA5K8we1058715@repoman.freebsd.org> From: Julian Elischer Date: Tue, 5 Nov 2002 12:08:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/bluetooth Makefile src/sys/bluetooth/common Makefile ng_bluetooth.c src/sys/bluetooth/drivers Makefile src/sys/bluetooth/drivers/bt3c Makefile ng_bt3c.4 ng_bt3c_firmware.h ng_bt3c_pccard.c ng_bt3c_var.h ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG julian 2002/11/05 12:08:58 PST Added files: sys/bluetooth Makefile sys/bluetooth/common Makefile ng_bluetooth.c sys/bluetooth/drivers Makefile sys/bluetooth/drivers/bt3c Makefile ng_bt3c.4 ng_bt3c_firmware.h ng_bt3c_pccard.c ng_bt3c_var.h sys/bluetooth/drivers/h4 Makefile TODO ng_h4.4 ng_h4.c ng_h4_prse.h ng_h4_var.h sys/bluetooth/drivers/ubt Makefile TODO ng_ubt.4 ng_ubt.c ng_ubt_var.h sys/bluetooth/hci Makefile TODO ng_hci.4 ng_hci_cmds.c ng_hci_cmds.h ng_hci_evnt.c ng_hci_evnt.h ng_hci_main.c ng_hci_misc.c ng_hci_misc.h ng_hci_prse.h ng_hci_ulpi.c ng_hci_ulpi.h ng_hci_var.h sys/bluetooth/include ng_bluetooth.h ng_bt3c.h ng_btsocket.h ng_btsocket_hci_raw.h ng_btsocket_l2cap.h ng_h4.h ng_hci.h ng_l2cap.h ng_ubt.h sys/bluetooth/l2cap Makefile TODO ng_l2cap.4 ng_l2cap_cmds.c ng_l2cap_cmds.h ng_l2cap_evnt.c ng_l2cap_evnt.h ng_l2cap_llpi.c ng_l2cap_llpi.h ng_l2cap_main.c ng_l2cap_misc.c ng_l2cap_misc.h ng_l2cap_prse.h ng_l2cap_ulpi.c ng_l2cap_ulpi.h ng_l2cap_var.h sys/bluetooth/socket Makefile TODO ng_btsocket.4 ng_btsocket.c ng_btsocket_hci_raw.c ng_btsocket_l2cap.c ng_btsocket_l2cap_raw.c Log: Check in the bluetooth stack All new files, not yet connected to the build Submitted by: Maksim Yevmenkin Revision Changes Path 1.1 +10 -0 src/sys/bluetooth/Makefile (new) 1.1 +9 -0 src/sys/bluetooth/common/Makefile (new) 1.1 +254 -0 src/sys/bluetooth/common/ng_bluetooth.c (new) 1.1 +8 -0 src/sys/bluetooth/drivers/Makefile (new) 1.1 +13 -0 src/sys/bluetooth/drivers/bt3c/Makefile (new) 1.1 +120 -0 src/sys/bluetooth/drivers/bt3c/ng_bt3c.4 (new) 1.1 +163 -0 src/sys/bluetooth/drivers/bt3c/ng_bt3c_firmware.h (new) 1.1 +1264 -0 src/sys/bluetooth/drivers/bt3c/ng_bt3c_pccard.c (new) 1.1 +103 -0 src/sys/bluetooth/drivers/bt3c/ng_bt3c_var.h (new) 1.1 +13 -0 src/sys/bluetooth/drivers/h4/Makefile (new) 1.1 +13 -0 src/sys/bluetooth/drivers/h4/TODO (new) 1.1 +121 -0 src/sys/bluetooth/drivers/h4/ng_h4.4 (new) 1.1 +1059 -0 src/sys/bluetooth/drivers/h4/ng_h4.c (new) 1.1 +122 -0 src/sys/bluetooth/drivers/h4/ng_h4_prse.h (new) 1.1 +100 -0 src/sys/bluetooth/drivers/h4/ng_h4_var.h (new) 1.1 +13 -0 src/sys/bluetooth/drivers/ubt/Makefile (new) 1.1 +30 -0 src/sys/bluetooth/drivers/ubt/TODO (new) 1.1 +102 -0 src/sys/bluetooth/drivers/ubt/ng_ubt.4 (new) 1.1 +2166 -0 src/sys/bluetooth/drivers/ubt/ng_ubt.c (new) 1.1 +143 -0 src/sys/bluetooth/drivers/ubt/ng_ubt_var.h (new) 1.1 +13 -0 src/sys/bluetooth/hci/Makefile (new) 1.1 +41 -0 src/sys/bluetooth/hci/TODO (new) 1.1 +329 -0 src/sys/bluetooth/hci/ng_hci.4 (new) 1.1 +887 -0 src/sys/bluetooth/hci/ng_hci_cmds.c (new) 1.1 +45 -0 src/sys/bluetooth/hci/ng_hci_cmds.h (new) 1.1 +1083 -0 src/sys/bluetooth/hci/ng_hci_evnt.c (new) 1.1 +43 -0 src/sys/bluetooth/hci/ng_hci_evnt.h (new) 1.1 +1009 -0 src/sys/bluetooth/hci/ng_hci_main.c (new) 1.1 +556 -0 src/sys/bluetooth/hci/ng_hci_misc.c (new) 1.1 +58 -0 src/sys/bluetooth/hci/ng_hci_misc.h (new) 1.1 +175 -0 src/sys/bluetooth/hci/ng_hci_prse.h (new) 1.1 +1270 -0 src/sys/bluetooth/hci/ng_hci_ulpi.c (new) 1.1 +53 -0 src/sys/bluetooth/hci/ng_hci_ulpi.h (new) 1.1 +214 -0 src/sys/bluetooth/hci/ng_hci_var.h (new) 1.1 +232 -0 src/sys/bluetooth/include/ng_bluetooth.h (new) 1.1 +106 -0 src/sys/bluetooth/include/ng_bt3c.h (new) 1.1 +295 -0 src/sys/bluetooth/include/ng_btsocket.h (new) 1.1 +85 -0 src/sys/bluetooth/include/ng_btsocket_hci_raw.h (new) 1.1 +200 -0 src/sys/bluetooth/include/ng_btsocket_l2cap.h (new) 1.1 +118 -0 src/sys/bluetooth/include/ng_h4.h (new) 1.1 +1643 -0 src/sys/bluetooth/include/ng_hci.h (new) 1.1 +655 -0 src/sys/bluetooth/include/ng_l2cap.h (new) 1.1 +103 -0 src/sys/bluetooth/include/ng_ubt.h (new) 1.1 +13 -0 src/sys/bluetooth/l2cap/Makefile (new) 1.1 +43 -0 src/sys/bluetooth/l2cap/TODO (new) 1.1 +342 -0 src/sys/bluetooth/l2cap/ng_l2cap.4 (new) 1.1 +365 -0 src/sys/bluetooth/l2cap/ng_l2cap_cmds.c (new) 1.1 +403 -0 src/sys/bluetooth/l2cap/ng_l2cap_cmds.h (new) 1.1 +1337 -0 src/sys/bluetooth/l2cap/ng_l2cap_evnt.c (new) 1.1 +38 -0 src/sys/bluetooth/l2cap/ng_l2cap_evnt.h (new) 1.1 +806 -0 src/sys/bluetooth/l2cap/ng_l2cap_llpi.c (new) 1.1 +48 -0 src/sys/bluetooth/l2cap/ng_l2cap_llpi.h (new) 1.1 +736 -0 src/sys/bluetooth/l2cap/ng_l2cap_main.c (new) 1.1 +517 -0 src/sys/bluetooth/l2cap/ng_l2cap_misc.c (new) 1.1 +100 -0 src/sys/bluetooth/l2cap/ng_l2cap_misc.h (new) 1.1 +71 -0 src/sys/bluetooth/l2cap/ng_l2cap_prse.h (new) 1.1 +1640 -0 src/sys/bluetooth/l2cap/ng_l2cap_ulpi.c (new) 1.1 +77 -0 src/sys/bluetooth/l2cap/ng_l2cap_ulpi.h (new) 1.1 +182 -0 src/sys/bluetooth/l2cap/ng_l2cap_var.h (new) 1.1 +15 -0 src/sys/bluetooth/socket/Makefile (new) 1.1 +15 -0 src/sys/bluetooth/socket/TODO (new) 1.1 +246 -0 src/sys/bluetooth/socket/ng_btsocket.4 (new) 1.1 +258 -0 src/sys/bluetooth/socket/ng_btsocket.c (new) 1.1 +1419 -0 src/sys/bluetooth/socket/ng_btsocket_hci_raw.c (new) 1.1 +2717 -0 src/sys/bluetooth/socket/ng_btsocket_l2cap.c (new) 1.1 +1222 -0 src/sys/bluetooth/socket/ng_btsocket_l2cap_raw.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message