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 ************************************************************************** **************************************************************************/