From owner-freebsd-bluetooth@FreeBSD.ORG Fri May 13 17:20:50 2005 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3927616A4CE for ; Fri, 13 May 2005 17:20:50 +0000 (GMT) Received: from mailgate1b.savvis.net (mailgate1b.savvis.net [216.91.182.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEA8C43D6A for ; Fri, 13 May 2005 17:20:49 +0000 (GMT) (envelope-from Maksim.Yevmenkin@savvis.net) Received: from localhost (localhost.localdomain [127.0.0.1]) by mailgate1b.savvis.net (Postfix) with ESMTP id 0DD183C121; Fri, 13 May 2005 12:20:49 -0500 (CDT) Received: from mailgate1b.savvis.net ([127.0.0.1]) by localhost (mailgate1b.savvis.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 10287-02-90; Fri, 13 May 2005 12:20:48 -0500 (CDT) Received: from out001.email.savvis.net (out001.apptix.savvis.net [216.91.32.44]) by mailgate1b.savvis.net (Postfix) with ESMTP id D3D783C114; Fri, 13 May 2005 12:20:48 -0500 (CDT) Received: from s228130hz1ew171.apptix-01.savvis.net ([10.146.4.29]) by out001.email.savvis.net with Microsoft SMTPSVC(6.0.3790.211); Fri, 13 May 2005 12:20:34 -0500 Received: from [10.254.186.111] ([66.35.239.94]) by s228130hz1ew171.apptix-01.savvis.net with Microsoft SMTPSVC(6.0.3790.211); Fri, 13 May 2005 12:20:28 -0500 Message-ID: <4284E1D8.7080006@savvis.net> Date: Fri, 13 May 2005 10:20:24 -0700 From: Maksim Yevmenkin User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050404) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Paolo Pisati References: <20050513165824.GA791@tin.it> In-Reply-To: <20050513165824.GA791@tin.it> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 13 May 2005 17:20:28.0679 (UTC) FILETIME=[0F0DF170:01C557E0] X-Virus-Scanned: amavisd-new at savvis.net cc: FreeBSD_Bluetooth Subject: Re: Dell True Mobile 350 X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 May 2005 17:20:50 -0000 Paolo, > i just got a brand new Dell Inspiron 6000 with a > Dell Truemobile 350 card. > > This is my verbose dmesg: [...] > ugen0: Dell product 0x8103, rev 2.00/16.57, addr 2 you need to load ng_ubt(4) driver. you can do it at loader prompt load ng_ubt or modify your /etc/loader.conf and add ng_ubt_load="YES" please see handbook for more details http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-bluetooth.html > and i thought it's my bluetooth device so i added > > product DELL TRUEMOBILE350 0x8103 TrueMobile 350 (Bluetooth) > > recompiled & installed a new kernel and the next boot i got: > > ugen0: Dell TrueMobile 350 (Bluetooth), rev 2.00/16.57, addr 2 adding "product" line is only going to make usb to show device's human readable name instead of id. > but even if i load ng_ubt i don't get any device in /dev. > > [flag@longino ~]$ kldstat | grep ubt > 15 1 0xc222d000 b000 ng_ubt.ko > [flag@longino ~]$ ls /dev/*ubt* > ls: /dev/*ubt*: No such file or directory > [flag@longino ~]$ ng_ubt(4) _does_not_ create any nodes in /dev. it will only create netgraph(4) node. use "ngctl li" (as root) to see if you have "ubt0" netgraph node. also look into /var/log/messages to see if ng_ubt(4) attached to your device. also if your device was already claimed by ugen(4) then ng_ubt(4) _will_not_ attach to it. you need to load ng_ubt(4) _before_ attaching the device, or re-plug the device to make sure ng_ubt(4) gets it. thanks, max