This is a discussion on Re: Undetected USB Wifi (SMCWUSBT-G2/ar5523) within the mailing.openbsd.tech forums, part of the OpenBSD category; --> On Fri, Jan 18, 2008 at 01:18:48PM -0800, Kaspo Lo wrote: > Hallo .. > > i'v got SMCWUSBT-G2 ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| On Fri, Jan 18, 2008 at 01:18:48PM -0800, Kaspo Lo wrote: > Hallo .. > > i'v got SMCWUSBT-G2 with Atheros chipset (ar5523). > After installing UATH_firmware, my OPENBSD 4.1 and 4.2 still didn't know the USB. Try the following diff against -current. You'll have to run 'make' in sys/dev/usb before building a kernel. Index: sys/dev/usb/usbdevs ================================================== ================= RCS file: /cvs/src/sys/dev/usb/usbdevs,v retrieving revision 1.330 diff -u -p -r1.330 usbdevs --- sys/dev/usb/usbdevs 5 Jan 2008 04:57:59 -0000 1.330 +++ sys/dev/usb/usbdevs 19 Jan 2008 00:31:16 -0000 @@ -584,6 +584,8 @@ product ACCTON USB320_EC 0x1046 USB320-E product ACCTON 2664W 0x3501 2664W product ACCTON 111 0x3503 T-Sinus 111 WLAN product ACCTON SMCWUSBG 0x4505 SMCWUSB-G +product ACCTON SMCWUSBTG2 0x4506 SMCWUSBT-G2 +product ACCTON SMCWUSBTG2_NF 0x4507 SMCWUSBT-G2 product ACCTON PRISM_GT 0x4521 PrismGT USB 2.0 WLAN product ACCTON SS1001 0x5046 SpeedStream Ethernet product ACCTON RT2870_2 0x6618 RT2870 Index: sys/dev/usb/if_uath.c ================================================== ================= RCS file: /cvs/src/sys/dev/usb/if_uath.c,v retrieving revision 1.31 diff -u -p -r1.31 if_uath.c --- sys/dev/usb/if_uath.c 11 Oct 2007 18:33:14 -0000 1.31 +++ sys/dev/usb/if_uath.c 19 Jan 2008 00:31:18 -0000 @@ -104,6 +104,7 @@ static const struct uath_type { #define UATH_FLAG_PRE_FIRMWARE (1 << 0) #define UATH_FLAG_ABG (1 << 1) } uath_devs[] = { + UATH_DEV_UG(ACCTON, SMCWUSBTG2), UATH_DEV_UG(ATHEROS, AR5523), UATH_DEV_UG(ATHEROS2, AR5523_1), UATH_DEV_UG(ATHEROS2, AR5523_2), |