FreeBSD and a working but unknown wlan adapter

gabor at zahemszky.hu gabor at zahemszky.hu
Wed Oct 19 09:19:37 UTC 2011


 Hi,

 it looks good to me. Thanks. Will these modifications
 will be in 9.0 (and when will MFC-d to 8.x) ?

 Bye,

 Gábor < Gabor at Zahemszky dot HU >

 On Wed, 19 Oct 2011 03:04:44 -0600, PseudoCylon wrote:
> On Wed, Oct 19, 2011 at 2:04 AM,  <gabor at zahemszky.hu> wrote:
>>>> Yesterday I bought a wlan adapter for my TV.
>>>> I tried it under FreeBSD, but it couldn't recognise it.
>>>> So I made my homework, and here is the output.
>>>
>>> [snip] Would you please create a PR so we don't forget to add it? 
>>> :)
>>
>> Made it.
>>
>> http://www.freebsd.org/cgi/query-pr.cgi?pr=161798
>>
>> Please, commit it :-)
>>
>> Gábor < Gabor at Zahemszky dot H >
>>
>
> Hi,
>
> Thank you for reporting. Here is diff (against HEAD,
> STRUCT_USB_HOST_ID isn't used in 8.2) including recently reported 2
> other IDs. Please verify. I have also submitted the patch. 3 more IDs
> to 200 mark!
>
> AK
>
>
> diff --git a/dev/usb/usbdevs b/dev/usb/usbdevs
> index 2c2e001..60bc822 100644
> --- a/dev/usb/usbdevs
> +++ b/dev/usb/usbdevs
> @@ -1,4 +1,4 @@
> -$FreeBSD: src/sys/dev/usb/usbdevs,v 1.520 2011/10/10 16:26:06 
> hselasky Exp $
> +$FreeBSD$
>  /* $NetBSD: usbdevs,v 1.392 2004/12/29 08:38:44 imp Exp $ */
>
>  /*-
> @@ -1145,6 +1145,7 @@ product BELKIN RT2870_1		0x8053	RT2870
>  product BELKIN RT2870_2		0x805c	RT2870
>  product BELKIN F5D8053V3	0x815c	F5D8053 v3
>  product BELKIN F5D8055		0x825a	F5D8055
> +product BELKIN F5D8055V2	0x825b	F5D8055 v2
>  product BELKIN F5D9050V3	0x905b	F5D9050 ver 3 Wireless Adapter
>  product BELKIN2 F5U002		0x0002	F5U002 Parallel printer
>  product BELKIN F6D4050V1	0x935a	F6D4050 v1
> @@ -1228,6 +1229,7 @@ product CISCOLINKSYS HU200TS	0x001a	HU200TS
> Wireless Adapter
>  product CISCOLINKSYS WUSB54GC	0x0020	WUSB54GC
>  product CISCOLINKSYS WUSB54GR	0x0023	WUSB54GR
>  product CISCOLINKSYS WUSBF54G	0x0024	WUSBF54G
> +product CISCOLINKSYS AE1000	0x002f	AE1000
>  product	CISCOLINKSYS2 RT3070	0x4001	RT3070
>  product	CISCOLINKSYS3 RT3070	0x0101	RT3070
>
> @@ -2840,6 +2842,7 @@ product SAGEM XG760A		0x004a	XG-760A
>  product SAGEM XG76NA		0x0062	XG-76NA
>
>  /* Samsung products */
> +product SAMSUNG WIS09ABGN	0x2018	WIS09ABGN Wireless LAN adapter
>  product SAMSUNG ML6060		0x3008	ML-6060 laser printer
>  product SAMSUNG YP_U2		0x5050	YP-U2 MP3 Player
>  product SAMSUNG YP_U4		0x5092	YP-U4 MP3 Player
> diff --git a/dev/usb/wlan/if_run.c b/dev/usb/wlan/if_run.c
> index e2fb1ad..a0ac26a 100644
> --- a/dev/usb/wlan/if_run.c
> +++ b/dev/usb/wlan/if_run.c
> @@ -17,7 +17,7 @@
>   */
>
>  #include <sys/cdefs.h>
> -__FBSDID("$FreeBSD: src/sys/dev/usb/wlan/if_run.c,v 1.23 2011/06/24
> 02:30:02 hselasky Exp $");
> +__FBSDID("$FreeBSD$");
>
>  /*-
>   * Ralink Technology RT2700U/RT2800U/RT3000U chipset driver.
> @@ -144,9 +144,11 @@ static const STRUCT_USB_HOST_ID run_devs[] = {
>      RUN_DEV(AZUREWAVE,		RT3070_3),
>      RUN_DEV(BELKIN,		F5D8053V3),
>      RUN_DEV(BELKIN,		F5D8055),
> +    RUN_DEV(BELKIN,		F5D8055V2),
>      RUN_DEV(BELKIN,		F6D4050V1),
>      RUN_DEV(BELKIN,		RT2870_1),
>      RUN_DEV(BELKIN,		RT2870_2),
> +    RUN_DEV(CISCOLINKSYS,	AE1000),
>      RUN_DEV(CISCOLINKSYS2,	RT3070),
>      RUN_DEV(CISCOLINKSYS3,	RT3070),
>      RUN_DEV(CONCEPTRONIC2,	RT2870_1),
> @@ -247,6 +249,7 @@ static const STRUCT_USB_HOST_ID run_devs[] = {
>      RUN_DEV(RALINK,		RT3370),
>      RUN_DEV(RALINK,		RT3572),
>      RUN_DEV(RALINK,		RT8070),
> +    RUN_DEV(SAMSUNG,		WIS09ABGN),
>      RUN_DEV(SAMSUNG2,		RT2870_1),
>      RUN_DEV(SENAO,		RT2870_1),
>      RUN_DEV(SENAO,		RT2870_2),



More information about the freebsd-wireless mailing list