A FreeBSD driver for Ralink Technology RT2700U/RT2800U/RT3000U chipset.

The driver is working fine with Linksys WUSB54GC ver.3 on amd64
FreeBSD 7.2; however, there is no guarantee the driver will work fine
with other products. So, brace for panic.

Known Issues
* Encryption isn't supported at this time. (I'm planning to work on it.)
* Once you "ifconfig run0 down", you have to unplug the USB dangle to
  make it work again.
* If you are in a region where only 11 channels are assigned to 802.11g,
  the USB devices may not work with 14-channel-enabled products, such as
  routers loaded with 3rd-party firmware.
  If you are in the region where you can use 14 channels, you may change
  the last argument in
	ieee80211_init_channels() if_run.c:486
  to 1.
* "ifconfig run0 up scan" won't work. You have to do that one at a time.
	#ifconfig run0 up
	#ifconfig run0 scan

How to use
----------
0) read Ralink license at
	sys/contrib/dev/run/LICENSE.ralink-firmware.txt
1) replace /usr/src/sys/dev/usb/usbdevs on your computer
   with one come with this. (sys/dev/usb/usbdevs)
2) make firmware
	%cd sys/modules/runfw
	%make
	#make install
3) make driver
	%cd sys/modules/run
	%make
	#make install
4) load firmware
	#kldload runfw
5) load driver
	#kldload if_run
