Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Mar 2002 17:13:51 +0200 (CEST)
From:      marius@alchemy.franken.de
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        n_hibma@FreeBSD.org
Subject:   kern/36573: [PATCH] add support for Abocom DU-E100 usb ethernet adapter
Message-ID:  <200203311513.g2VFDp0n044653@alchemy.franken.de>

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

>Number:         36573
>Category:       kern
>Synopsis:       [PATCH] add support for Abocom DU-E100 usb ethernet adapter
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Mar 31 07:20:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator:     marius@alchemy.franken.de
>Release:        FreeBSD 4.5-20020314-STABLE i386
>Organization:
>Environment:
System: FreeBSD alchemy.franken.de 4.5-20020314-STABLE FreeBSD 4.5-20020314-STABLE #0: Mon Mar 25 00:15:43 CET 2002 root@alchemy.franken.de:/usr/src/sys/compile/alchemy i386


>Description:
	well, synopsis says all.
>How-To-Repeat:
>Fix:
	the patch is against the RELENG_4 versions of the files.
	btw, i think there is a bug in if_aue.c, it uses a dlink device-
	id for an abocom device, see patch. essentially it shouldn't make
	any difference in operation but can't hurt to get it right.

--- if_aue.c.orig	Fri Mar 29 19:27:11 2002
+++ if_aue.c	Fri Mar 29 20:02:41 2002
@@ -118,7 +118,8 @@
     { USB_VENDOR_LINKSYS,	USB_PRODUCT_LINKSYS_USB10TX2,	  LSYS },
     { USB_VENDOR_COREGA,	USB_PRODUCT_COREGA_FETHER_USB_TX, 0 },
     { USB_VENDOR_KINGSTON,	USB_PRODUCT_KINGSTON_KNU101TX,	  0 },
-    { USB_VENDOR_ABOCOM,	USB_PRODUCT_DLINK_DSB650TX_PNA,	  0 },
+    { USB_VENDOR_ABOCOM,	USB_PRODUCT_ABOCOM_DSB650TX_PNA,  0 },
+    { USB_VENDOR_ABOCOM,	USB_PRODUCT_ABOCOM_DUE100,	  PII },
     { USB_VENDOR_IODATA,	USB_PRODUCT_IODATA_USBETTX,	  0 },
     { USB_VENDOR_ACCTON,	USB_PRODUCT_ACCTON_USB320_EC,	  0 },
     { 0, 0, 0 }
--- usbdevs.h.orig	Fri Mar 29 19:31:32 2002
+++ usbdevs.h	Fri Mar 29 19:43:09 2002
@@ -370,6 +370,7 @@
 /* AboCom products */
 #define	USB_PRODUCT_ABOCOM_URE450	0x4000		/* URE450 Ethernet Adapter */
 #define	USB_PRODUCT_ABOCOM_DSB650TX_PNA	0x4003		/* 1/10/100 ethernet adapter */
+#define	USB_PRODUCT_ABOCOM_DUE100	0x4102		/* DU-E100 Fast Ethernet Adapter */
 
 /* Accton products */
 #define	USB_PRODUCT_ACCTON_USB320_EC	0x1046		/* USB320-EC Ethernet Adapter */
--- usbdevs.orig	Fri Mar 29 19:43:23 2002
+++ usbdevs	Fri Mar 29 19:44:41 2002
@@ -363,6 +363,7 @@
 /* AboCom products */
 product ABOCOM URE450		0x4000	URE450 Ethernet Adapter
 product ABOCOM DSB650TX_PNA	0x4003	1/10/100 ethernet adapter
+product ABOCOM DUE100		0x4102	DU-E100 Fast Ethernet Adapter
 
 /* Accton products */
 product ACCTON USB320_EC	0x1046	USB320-EC Ethernet Adapter
--- usbdevs_data.h.orig	Fri Mar 29 19:44:54 2002
+++ usbdevs_data.h	Fri Mar 29 19:46:47 2002
@@ -106,6 +106,12 @@
 	    "1/10/100 ethernet adapter",
 	},
 	{
+	    USB_VENDOR_ABOCOM, USB_PRODUCT_ABOCOM_DUE100,
+	    0,
+	    "AboCom Systems",
+	    "DU-E100 Fast Ethernet Adapter",
+	},
+	{
 	    USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_USB320_EC,
 	    0,
 	    "Accton Technology",
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




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