[Bug 239495] if_urndis does not support newer HMD Global devices
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Sun Jul 28 19:45:11 UTC 2019
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=239495
--- Comment #3 from Hans Petter Selasky <hselasky at FreeBSD.org> ---
You need to modify this table in if_urndis.c to make it attach:
static const STRUCT_USB_HOST_ID urndis_host_devs[] = {
/* Generic RNDIS class match */
{USB_IFACE_CLASS(UICLASS_CDC),
USB_IFACE_SUBCLASS(UISUBCLASS_ABSTRACT_CONTROL_MODEL),
USB_IFACE_PROTOCOL(0xff)},
{USB_IFACE_CLASS(UICLASS_WIRELESS), USB_IFACE_SUBCLASS(UISUBCLASS_RF),
USB_IFACE_PROTOCOL(UIPROTO_RNDIS)},
{USB_IFACE_CLASS(UICLASS_IAD), USB_IFACE_SUBCLASS(UISUBCLASS_SYNC),
USB_IFACE_PROTOCOL(UIPROTO_ACTIVESYNC)},
/* HP-WebOS */
{USB_VENDOR(USB_VENDOR_PALM), USB_IFACE_CLASS(UICLASS_CDC),
USB_IFACE_SUBCLASS(UISUBCLASS_ABSTRACT_CONTROL_MODEL),
USB_IFACE_PROTOCOL(0xff)},
};
Using these values:
bInterfaceClass = 0x00ef <Miscellaneous device>
bInterfaceSubClass = 0x0004
bInterfaceProtocol = 0x0001
Can you try the attached patch?
--HPS
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-usb
mailing list