Hi Alex,
I had the same problem recently. I modified and recompiled the zd1211rw driver and I was even able to get iwconfig to regocnize the g-202. However, I never got it working: I couldn't make it associate with my wireless access point nor to get IP address for it.
But the I found something called ndiswrapper that can use the original windows drivers from zyxel. And this did the trick, now the g-202 works nicely and I got it also activating automatically during the boot after playing a bit with /etc/sysconfig files. Just download the driver from zyxel website and follow instructions here http://ndiswrapper.sourceforge.net/m...p/Installation
My system is fedora6 but I guess it should work also in your case.
btw. in case of zd1211rw you need to modify zd_usb.c file by adding this line
{ USB_DEVICE(0x0586, 0x3410), .driver_info = DEVICE_ZD1211 },
where that value for USB_DEVICE is is what you see with lsusb command.
This needs to be added to static struct usb_device_id usb_ids[] -definitions. Then I just recompiled the thing, did
make ins
and
modprobe -v zd1211rw.
to load the module. Then with ifconfig, iwscan and iwconfig I tried configuring and activating it, but there I run out of luck and eventually found the ndiswrapper.
hope this helps
-julle |