Date: Wed, 9 Apr 2003 10:16:56 -0700 (PDT) From: Maksim Yevmenkin <m_evmenkin@yahoo.com> To: current@freebsd.org, mobile@freebsd.org Cc: Vaidas_Damosevicius <vaidas.damosevicius@if.lt> Subject: RE: HP Bluetooth MultiPort module Message-ID: <20030409171656.38541.qmail@web40305.mail.yahoo.com> In-Reply-To: <20030409112539.8178E35E45@mail.if.lt>
next in thread | previous in thread | raw e-mail | index | archive | help
[-- Attachment #1 --] Dear Hackers, Proud owners of the HP Bluetooth MultiPort module for Evo Notebooks, Presario Notebooks, and Evo Desktops http://h18004.www1.hp.com/products/wireless/wpan/btmultiport.html can now try to use it under FreeBSD. Please try the attached patch for the ng_ubt(4) driver. This patch is against the latest (2003-04-07) snapshot. Please let me know if it works for you. Thanks to Vaidas Damosevicius <vaidas.damosevicius@if.lt> for sending all the required information. thanks, max __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://tax.yahoo.com [-- Attachment #2 --] Index: sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c =================================================================== RCS file: /usr/local/cvs/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c,v retrieving revision 1.8 diff -u -7 -r1.8 ng_ubt.c --- sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c 5 Apr 2003 20:39:52 -0000 1.8 +++ sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c 9 Apr 2003 17:03:33 -0000 @@ -299,14 +299,15 @@ { USB_VENDOR_3COM, USB_PRODUCT_3COM_3CREB96 }, { USB_VENDOR_MITSUMI, USB_PRODUCT_MITSUMI_BT_DONGLE }, { USB_VENDOR_TDK, USB_PRODUCT_TDK_BT_DONGLE }, { USB_VENDOR_MSI, USB_PRODUCT_MSI_BT_DONGLE }, { USB_VENDOR_BROADCOM, USB_PRODUCT_DBW_120M_BT_DONGLE }, { USB_VENDOR_EPOX, USB_PRODUCT_BT_DG02_DONGLE }, { USB_VENDOR_MICROSOFT,USB_PRODUCT_MICROSOFT_BT_TRANS }, + { USB_VENDOR_ALPS2, USB_PRODUCT_ALPS2_UGT }, { 0, 0 } }; USB_MATCH_START(ubt, uaa); if (uaa->iface == NULL || usb_lookup(ubt_devices, uaa->vendor, uaa->product) == NULL) Index: sys/netgraph/bluetooth/include/ng_ubt.h =================================================================== RCS file: /usr/local/cvs/sys/netgraph/bluetooth/include/ng_ubt.h,v retrieving revision 1.3 diff -u -7 -r1.3 ng_ubt.h --- sys/netgraph/bluetooth/include/ng_ubt.h 22 Mar 2003 23:44:37 -0000 1.3 +++ sys/netgraph/bluetooth/include/ng_ubt.h 9 Apr 2003 17:03:34 -0000 @@ -31,22 +31,24 @@ #ifndef _NG_UBT_H_ #define _NG_UBT_H_ /* XXX FIXME Does not belong here. Move to usbdevs.h later */ #define USB_VENDOR_MSI 0x0db0 /* MSI www.msi.com.tw */ #define USB_VENDOR_EPOX 0x0a12 /* EPoX www.epox.com */ +#define USB_VENDOR_ALPS2 0x049f /* ALPS - another ID */ #define USB_PRODUCT_3COM_3CREB96 0x00a0 /* 3Com Bluetooth USB dongle */ #define USB_PRODUCT_MITSUMI_BT_DONGLE 0x641f /* Mitsumi Bluetooth USB dongle*/ #define USB_PRODUCT_TDK_BT_DONGLE 0x0309 /* TDK Bluetooth USB dongle */ #define USB_PRODUCT_MSI_BT_DONGLE 0x1967 /* MSI Bluetooth USB dongle */ #define USB_PRODUCT_DBW_120M_BT_DONGLE 0x2033 /* D-Link DBW-120M */ #define USB_PRODUCT_BT_DG02_DONGLE 0x0001 /* EPoX BT-DG02 USB dongle */ #define USB_PRODUCT_MICROSOFT_BT_TRANS 0x007e /* MS Wireless Transceiver */ +#define USB_PRODUCT_ALPS2_UGT 0x0027 /* Compaq Evo 610c BT module */ /************************************************************************** ************************************************************************** ** Netgraph node hook name, type name and type cookie and commands ************************************************************************** **************************************************************************/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030409171656.38541.qmail>
