Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Aug 2006 05:53:36 GMT
From:      David Grochowski <grocho98@students.rowan.edu>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   usb/102260: [PATCH] Add Belkin FC6550-AVR UPS to the usb quirks list.
Message-ID:  <200608190553.k7J5raQo018813@www.freebsd.org>
Resent-Message-ID: <200608190600.k7J60VO1081311@freefall.freebsd.org>

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

>Number:         102260
>Category:       usb
>Synopsis:       [PATCH] Add Belkin FC6550-AVR UPS to the usb quirks list.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-usb
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Aug 19 06:00:30 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     David Grochowski
>Release:        6.1-STABLE
>Organization:
Rowan University
>Environment:
FreeBSD berserker 6.1-STABLE FreeBSD 6.1-STABLE #40: Fri Aug 18 01:21:30 EDT 2006     root@berserker:/usr/obj/usr/src/sys/BERSERKER  i386
>Description:
The Belkin FC6550-AVR is detected as a uhid device instead of a ugen device, preventing it from working with nut.  A simple patch against 6.1-STABLE is provided below.
>How-To-Repeat:

>Fix:
------------------------------- BEGIN PATCH HERE -------------------------------
--- sys/dev/usb/usbdevs.orig    Sat Aug  5 03:51:39 2006
+++ sys/dev/usb/usbdevs Sat Aug  5 03:52:46 2006
@@ -707,6 +707,7 @@
 product BELKIN F5U109          0x0109  F5U109 Serial
 product BELKIN F5U208          0x0208  F5U208 VideoBus II
 product BELKIN F5U409          0x0409  F5U409 Serial
+product BELKIN F6C550AVR       0x0551  F6C550-AVR UPS
 product BELKIN F5U120          0x1203  F5U120-PC Hub
 product BELKIN F5D7050         0x7050  F5D7050 wireless adapter
 
--- sys/dev/usb/usb_quirks.c.orig   Wed Feb 15 17:51:08 2006
+++ sys/dev/usb/usb_quirks.c        Sat Aug 19 00:45:14 2006
@@ -104,6 +104,8 @@
  /* Devices which should be ignored by uhid */
  { USB_VENDOR_APC, USB_PRODUCT_APC_UPS,
        ANY, { UQ_HID_IGNORE }},
+ { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F6C550AVR,
+       ANY, { UQ_HID_IGNORE }},
  { USB_VENDOR_DELORME, USB_PRODUCT_DELORME_EARTHMATE,
        ANY, { UQ_HID_IGNORE }},
  { USB_VENDOR_MGE, USB_PRODUCT_MGE_UPS1,
-------------------------------- END PATCH HERE --------------------------------

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



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