Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Oct 2013 21:55:28 GMT
From:      Keith White <kwhite@site.uottawa.ca>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   usb/182936: [patch] [usbdevs] if_run update for Beklin F6D4050v2
Message-ID:  <201310122155.r9CLtSZ2070520@oldred.freebsd.org>
Resent-Message-ID: <201310122200.r9CM00TT030880@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         182936
>Category:       usb
>Synopsis:       [patch] [usbdevs] if_run update for Beklin F6D4050v2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-usb
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Oct 12 22:00:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Keith White
>Release:        current
>Organization:
EECS, University of Ottawa
>Environment:
FreeBSD beaglebone 11.0-CURRENT FreeBSD 11.0-CURRENT #23 r256381M: Sat Oct 12 12:36:48 EDT 2013     root@beaglebone:/usr/obj/usr/src/sys/BEAGLEBONE  arm

>Description:
if_run does not include support for the Belkin F6D4050v2 USB wireless adapter out of the box.  Adding tne vendor and product id is enough to enable support in the  driver.
>How-To-Repeat:

>Fix:
These diffs to a recent HEAD fixed the problem for me:

Index: sys/dev/usb/usbdevs
===================================================================
--- sys/dev/usb/usbdevs (revision 256393)
+++ sys/dev/usb/usbdevs (working copy)
@@ -1259,6 +1259,7 @@
 product BELKIN F5D9050V3       0x905b  F5D9050 ver 3 Wireless Adapter
 product BELKIN2 F5U002         0x0002  F5U002 Parallel printer
 product BELKIN F6D4050V1       0x935a  F6D4050 v1
+product BELKIN F6D4050V2       0x935b  F6D4050 v2
 
 /* Billionton products */
 product BILLIONTON USB100      0x0986  USB100N 10/100 FastEthernet
Index: sys/dev/usb/wlan/if_run.c
===================================================================
--- sys/dev/usb/wlan/if_run.c   (revision 256393)
+++ sys/dev/usb/wlan/if_run.c   (working copy)
@@ -147,6 +147,7 @@
     RUN_DEV(BELKIN,            F5D8055),
     RUN_DEV(BELKIN,            F5D8055V2),
     RUN_DEV(BELKIN,            F6D4050V1),
+    RUN_DEV(BELKIN,            F6D4050V2),
     RUN_DEV(BELKIN,            RT2870_1),
     RUN_DEV(BELKIN,            RT2870_2),
     RUN_DEV(CISCOLINKSYS,      AE1000),


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310122155.r9CLtSZ2070520>