RE: HP Bluetooth MultiPort module
Maksim Yevmenkin <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.mobile |
|---|---|
| Message-ID | <20030409171656.38541.qmail__21891.6279649877$1049908642@web40305.mail.yahoo.com> |
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 <[email protected]> for sending all the required information. thanks, max __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://tax.yahoo.com _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-mobile To unsubscribe, send any mail to "[email protected]"
ng_ubt.alps.ugt.diff
(application/octet-stream, 2.6 KB)
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
**************************************************************************
**************************************************************************/