Date: Sun, 7 Jul 2002 11:52:01 +0100 From: Josef Karthauser <joe@tao.org.uk> To: Patrick Thomas <root@utility.clubscholarship.com> Cc: freebsd-net@freebsd.org Subject: Re: Linksys USB100M ... usbd.conf help needed. Message-ID: <20020707105201.GQ2813@genius.tao.org.uk> In-Reply-To: <20020706150728.G79469-100000@utility.clubscholarship.com> References: <20020706150728.G79469-100000@utility.clubscholarship.com>
next in thread | previous in thread | raw e-mail | index | archive | help
--+nG9yj4eE4W6Oba0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Jul 06, 2002 at 03:17:28PM -0700, Patrick Thomas wrote: > > I have just purchased a Linksys USB100M - it is a very small key-style USB > NIC. I am running 5.0-DP1. I have all of the USB items except for the > removable disk device compiled into my kernel - I also have the three > aue/cue/kue options compiled into the kernel. > > I put the device in and got this message on the console: > > Jul 6 15:06:49 hostname kernel: ugen0: Linksys Linksys USB LAN Adapter, > rev 1.10/1.00, addr 2 > > Then I ran `usbdevs -v`: > > Controller /dev/usb0: > addr 1: self powered, config 1, UHCI root hub(0x0000), Intel(0x0000), rev > 1.00 port 1 addr 2: full speed, power 120 mA, config 1, Linksys USB LAN > Adapter(0x8150), Linksys(0x0bda), rev 1.00 > port 2 powered Let's assume for a minute that it's an aue device (are all LinkSys'). Try applying the attached patch file to /sys/dev/usb/if_aue.c and recompiling the kernel. Do you get an aue0 attaching now when you plug the adapter in, and does it work? Joe --+nG9yj4eE4W6Oba0 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="if_aue.c-patch" Index: if_aue.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/if_aue.c,v retrieving revision 1.60 diff -u -r1.60 if_aue.c --- if_aue.c 27 May 2002 00:00:48 -0000 1.60 +++ if_aue.c 7 Jul 2002 10:50:21 -0000 @@ -151,6 +151,7 @@ {{ USB_VENDOR_IODATA, USB_PRODUCT_IODATA_USBETTX}, 0 }, {{ USB_VENDOR_IODATA, USB_PRODUCT_IODATA_USBETTXS}, PII }, {{ USB_VENDOR_KINGSTON, USB_PRODUCT_KINGSTON_KNU101TX}, 0 }, + {{ USB_VENDOR_LINKSYS, 0x8150 }, LSYS }, {{ USB_VENDOR_LINKSYS, USB_PRODUCT_LINKSYS_USB10TX1}, LSYS|PII }, {{ USB_VENDOR_LINKSYS, USB_PRODUCT_LINKSYS_USB10T}, LSYS }, {{ USB_VENDOR_LINKSYS, USB_PRODUCT_LINKSYS_USB100TX}, LSYS }, --+nG9yj4eE4W6Oba0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020707105201.GQ2813>