From owner-freebsd-usb@FreeBSD.ORG Tue Mar 4 12:20:01 2014 Return-Path: Delivered-To: freebsd-usb@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98484711 for ; Tue, 4 Mar 2014 12:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 82C6CBAB for ; Tue, 4 Mar 2014 12:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s24CK1lQ009201 for ; Tue, 4 Mar 2014 12:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s24CK1RD009200; Tue, 4 Mar 2014 12:20:01 GMT (envelope-from gnats) Date: Tue, 4 Mar 2014 12:20:01 GMT Message-Id: <201403041220.s24CK1RD009200@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org Cc: From: =?ISO-2022-JP?B?SGlyb28gT25vICgbJEI+LkxuNDJAOBsoQik=?= Subject: Re: usb/187188: [USB][patch] ELECOM WRH-150 needs a quirk X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?ISO-2022-JP?B?SGlyb28gT25vICgbJEI+LkxuNDJAOBsoQik=?= List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Mar 2014 12:20:01 -0000 The following reply was made to PR usb/187188; it has been noted by GNATS. From: =?ISO-2022-JP?B?SGlyb28gT25vICgbJEI+LkxuNDJAOBsoQik=?= To: Hans Petter Selasky Cc: freebsd-gnats-submit@freebsd.org Subject: Re: usb/187188: [USB][patch] ELECOM WRH-150 needs a quirk Date: Tue, 4 Mar 2014 21:15:42 +0900 Hi, I have tried with stable r262711, and it is recognized as umodem0, same as with 10.0R. ugen4.3: at usbus4 umodem0: on usbus4 umodem0: data interface 1, has no CM over data, has no break This device is a NAT router, which has a (wired) ethernet interface for the WAN side. For the LAN side, it has a wireless interface and a USB interface. The USB interface has 2 configuration indexes. The config index 0 is recognized as umodem0, and config index 1 is recognized as ue0. For the usual case, I want it to be recognized as ue, which need a quirk to set the config index to 1. The user manual of this device says that, when I plug in the device to windows PC, the driver installation starts, and then it is recognized as an USB ethernet device. So, similar setting should be used for Windows. I do not know what the umodem of config index 0 is for. hrs@ who suggested me to use the quirk speculated that it might be used to update the firmware, but not sure. 2014-03-03 17:16 GMT+09:00 Hans Petter Selasky : > If you upgrade to -stable there should be an RNDIS driver in FreeBSD now. > Have you tried that: > > /boot/kernel/if_urndis.ko > > http://svnweb.freebsd.org/changeset/base/262362 > > --HPS