Penguin
Blame: RT2x00WirelessChipset
EditPageHistoryDiffInfoLikePages
Annotated edit history of RT2x00WirelessChipset version 8, including all changes. View license author blame.
Rev Author # Line
1 CraigBox 1 * RT2400/RT2401 - 11 Mbps, 802.11b, 2.4 GHz, (RT2421, RT2460)
2 * RT2500 - 54 Mbps, 802.11g, 2.4 GHz, (RT2525, RT2560)
3 * RT2500USB - 54 Mbps, 802.11g, 2.4 GHz, USB 1.1/USB 2.0, (RT2526, RT2571)
4 * RT2600 MIMO XR - 54 Mbps, 802.11b/g, 2.4 GHz, (?, ?)
5 * RT5200 - 54 Mbps, 802.11a/b/g, 2.4/5 GHz, (RT5222, RT2560)
2 CraigBox 6
4 CraigBox 7 The RT2400 and RT2500 WirelessChipsets have a [GPL] [driver|http://rt2x00.serialmonkey.com/].
2 CraigBox 8
9 "Ralink worked with Mark Wallis, Ivo van Doorn, Luis Correia, Robin Cornelius and others to get a supported driver out there under the GPL". "Special thanks to Minitar, the network gear vendor with the foresight to ask Ralink to make the driver GPL".
8 JamesSpooner 10
11 ----
12 !RT2500USB adapter, Linux 2.6 / FreeBSD 6.x
13
14 James Spooner writes:
15
16 The Dick Smith USB 2.0 802.11g WLAN Adaptor (XH8344) is a RT2500USB (rt2570) adapter and work with Linux and FreeBSD.
17
18 Under Linux use the rt2570 drivers from http://rt2x00.serialmonkey.com/, I believe that the rt2x00 unified drivers work - but I can't be sure - YMMV.
19 Under FreeBSD (6.0) the Ural driver works out of the box.
20
21
22 NB: This device *REQUIRES* a USB 2.0 port to work, I have not found a machine (FreeBSD or Linux) that can use the device in USB 1.x mode, it intermittantly associates, but fails to maintain the connection.
1 CraigBox 23
5 CraigBox 24 ----
25 !RT2500 card, [SUSE] 9.3
26
27 Volker Kuhlmann writes:
28
29 Get driver source from sourceforge project "rt2400", rt2500-1.1.0-b3.tar.gz.
30
31 It needs packages kernel-source, and I had kernel-syms too. Driver compiles fine. There's only one file to copy for installation - rt2500.ko. Overwriting the SuSE-supplied one is fine.
32
33 To compile the RaConfig2500 utility, package qt3-devel (and its dependencies) and a C++ compiler are needed. One needs qmake first, it's in /usr/lib/qt3/bin/qmake and for some reason not in $PATH.
34
6 AristotlePagaltzis 35 <pre>
5 CraigBox 36 ln -s ../lib/qt3/bin/qmake /usr/bin
6 AristotlePagaltzis 37 </pre>
5 CraigBox 38
39 Compiles fine. Runs fine, too.
40
41 Version 1.1.0 beta3 is worlds better than beta1. It actually always establishes a link to the AP. It works fine, too. Configure WPA-PSK in yast, and ignore the "WPA not supported yet" by rcnetwork restart. Run RaConfig2500 and configure WPA-PSK, somewhere it stays permanently. Hence WPA-PSK works too.
42
43 The only downside is that while playing with RaConfig2500, the box locked rock-solid 3 times, and I had to engage the reset button. The whole setup looks ok at first (and second) glance, but I reserve judgement about the reliability of Ralink 2500 until later.
7 SimonGreen 44
45 ----
46 !Debian testing/unstable users
47
48 Sources packages exist in the debian testing and unstable archive for both the rt2400 and rt2500 chipsets. This is the easy way to go for such users. The below is what I did, with the default 2.6.8 (x86) kernel:
49
50 <pre>apt-get install linux-headers-2.6.8-2-386 wireless-tools build-essential rt2400-source gcc-3.3
51 cd /usr/src/
52 tar xfvz rt2400.tar.gz
53 module-assistant prepare
54 module-assistant get rt2400
55 module-assistant build rt2400
56 #install the newly created package, note the file might be named differently
57 dpkg --install rt2400-2.6.8-2-386_1.2.2+cvs20050730-3+2.6.8-16_i386.deb
58 </pre>
59
60 Now you need to update /etc/network/interfaces. This is a snipet from my interfaces file (eth1 is my wireless interface). Note you need to put your own wep key and essid in the last two lines.
61
62 <pre>auto eth1
63 iface eth1 inet static
64 address 192.168.1.3
65 netmask 255.255.255.0
66 network 192.168.1.0
67 broadcast 192.168.1.255
68 gateway 192.168.1.1
69 up \
70 /sbin/iwconfig eth1 mode Managed && \
71 /sbin/iwconfig eth1 key your_key_here && \
72 /sbin/iwconfig eth1 essid your_essid_here
73 </pre>
5 CraigBox 74
75 ----
76
77 See also:
78 * [List of Ralink RT2500 chipset based wireless cards|http://ralink.rapla.net/]
79
80 -----
81 CategoryWireless