From owner-freebsd-bluetooth@FreeBSD.ORG Sat Jan 3 18:34:58 2009 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B3F3E106564A for ; Sat, 3 Jan 2009 18:34:58 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.234]) by mx1.freebsd.org (Postfix) with ESMTP id 86B4B8FC14 for ; Sat, 3 Jan 2009 18:34:58 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so8013343rvf.43 for ; Sat, 03 Jan 2009 10:34:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=a2OS0Nl/73ACFfI6kg1zD2TD22p8KOAIKph9JsdT/YA=; b=IL07T05LAkPlEdVay6VO/yYJWUMIKbVyggU/Dfd673feAVT56QCkBCwbnDh1tbHPm8 wBNNh1RpfwTr7+EIwsJD6dGnWXxXO9+we5pp37Wv23P5njazfCZN4GghaTdnHQJWKbOK LzV/ULHDpsrIYwbGpxHUB5giIppG1/o+M5RJk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=FsMHR5m5o2iFz8gZOtsijzVc5jWMoY3rdhy3gqMl9HQaAN/d/sjMFYJ4a5V/Ckrepz WLLN2KJvXutmR99xpfd7DNMs1SUQ45KKo7K8z2UebxcDlk0Q3loQ0VdHPFz5SH4+/Ytv KQ87kJEiYxuP49QNczV89rqmqggN3tWvRXAa0= Received: by 10.140.157.5 with SMTP id f5mr9462668rve.122.1231007697968; Sat, 03 Jan 2009 10:34:57 -0800 (PST) Received: by 10.141.210.11 with HTTP; Sat, 3 Jan 2009 10:34:57 -0800 (PST) Message-ID: Date: Sat, 3 Jan 2009 10:34:57 -0800 From: "Maksim Yevmenkin" To: dvg_lab In-Reply-To: <21267396.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <21267396.post@talk.nabble.com> Cc: freebsd-bluetooth@freebsd.org Subject: Re: MSI MegaBook PR300 (aka MS1313) usb bluetooth device X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Jan 2009 18:34:59 -0000 On Sat, Jan 3, 2009 at 9:55 AM, dvg_lab wrote: > > I'm on CURRENT built a couple of days ago. > I try to use builtin usb device. > usbdevs -v shows > port 1 addr 2: full speed, self powered, config 1, product 0xa97a(0xa97a), > vendor 0x0db0(0x0db0), rev 19.58 > > I've found that this device 0xa97a described in OpenBSD sys/dev/usb/usbdevs > file as > product MSI BLUETOOTH_3 0xa97a Bluetooth > at line 1941, I've tried to copy this line to the same place in FreeBSD's > usbdevs file and recompile the kernel but without success. > > Is this device in plans to support by FreebSD ? 1) did you load bluetooth device driver? ( man ng_ubt(4) ) 2) did you turn the device on? (some laptops have dedicated "bluetooth on/off" button) keep in mind there will NOT be any entries in /dev for bluetooth devices, only netgraph nodes. the easiest way to get this working is to add "ng_ubt_load="YES"" to your loader.conf and reboot. next time bluetooth device is attached devd(8) should automatically load all the required modules and start the stack (see /etc/rc.d/bluetooth for more details). thanks, max