Contents
Stable compat-wireless releases
This page is dedicated to the stable kernel compat-wireless releases. These releases are based on stable kernel versions. Our goal is to support stable releases on kernels at least as old as the oldest supported kernel listed on kernel.org, today that is 2.6.27 but we have done work to support even older kernels and each driver may also have additional work to support even older kernelsl
As of today every stable version should be compatible with every kernel >= 2.6.26, like the bleeding edge releases. This started with the announcement of work for 2.6.30-rc series and will continue for all stable kernels releases. These stable releases are intended for users looking for more stability than what bleeding edge daily compat-wireless releases provide.
Case for support
Wireless vendors are encouraged to use these releases for support purposes as no extra tree needs to be created and supported. Stable fixes must always be sent upstream as well. This ensures wireless vendors are testing with stable kernels and helping stabilize the kernels further.
Legend
Extra flag meanings:
- -s - get and apply pending-stable/ from linux-next.git
- -n - apply the patches linux-next-cherry-picks directory
- -p - apply the patches on the linux-next-pending directory
- -c - apply the patches on the crap directory
Release with no extra flags are simply vanilla releases of the kernel. Users are encouraged to use the -spn releases as these releases will have extra fixes not yet propagated. The -s flag for example indicates that the release has patches marked as stable which will be released by the next 2.6.x.y release of the kernel so you might as well get them now. Linux distributions are encouraged to use the extra flagged releases as well. We provide the vanilla releases for those Linux distributions which just want vanilla for whatever reason.
compat-wireless stable releases
Here are the list of stable releases of compat-wireless.
NOTE: Please be aware that the releases below contain code from the given version of the Linux kernel. Therefore to add functionality, you should select a version that is later than your kernel version.
compat-wireless 3.2 stable releases
Kernel release |
sha1sum |
size |
ChangeLog-wireless |
f54fb60502610f429c02f0709c70d23410a629dd |
4.0 MB |
||
591d6ebe7b1319e7d40bb5decd7100067b83e6da |
4.0 MB |
compat-wireless 3.1 stable releases
Kernel release |
sha1sum |
size |
ChangeLog-wireless |
d0bb37b9643e21873a0edbe3f8a99f48a826c6e8 |
4.1 MB |
compat-wireless 3.0 stable releases
Kernel release |
sha1sum |
size |
ChangeLog-wireless |
388d2a76d70b0671d65383e121e0078c3aa9cc69 |
4.1 MB |
compat-wireless 2.6.39 stable releases
Kernel release |
sha1sum |
size |
ChangeLog-wireless |
0a97215617be62cebe8cacd2228bc624716c9434 |
4.2 MB |
||
0c0a9d02a23153e31e3db84a84c1eb62a7615982 |
4.2 MB |
compat-wireless 2.6.38 stable releases
Kernel release |
sha1sum |
size |
ChangeLog-wireless |
07d1c99c5f9db3413c8ae8a58b8e9d57db78c576 |
3.9 MB |
||
c0470b3cbb3d9b31a1d9a98ea82f4fe344c8ea59 |
3.9 MB |
compat-wireless 2.6.37 stable releases
Kernel release |
sha1sum |
size |
ChangeLog-wireless |
e1b6432ce9e6738e320334b26e4adb68d3dd2a80 |
3.8 MB |
||
54b8d777287fdcc7a716d71cfb21884f1ae07157 |
3.8 MB |
compat-wireless 2.6.36 stable releases
Kernel release |
sha1sum |
size |
ChangeLog-wireless |
7b6e4e8314008cef7c6b132fd6925f1c2660f8d2 |
2.6 MB |
||
e2391cc37d762dab146c2e067534f3f20eb4469f |
2.6 MB |
Older stable releases
Kernel release |
sha1sum |
size |
ChangeLog-wireless |
4e33700b4200eca9c562b18b8f97992ab5edb544 |
1.9 MB |
||
95d3227cb79ac8a706994d6a5a6bff4e1c2c1a5d |
2.2 MB |
||
8692e5c21d907cebc31f8061171a7174dd89d99f |
2.3 MB |
||
95a44314284e68ea8902b42bd7a41e0b613efe64 |
2.5 MB |
Recommended
We recommend these the following userspace applications to be installed:
Prerequisites
You need kernel headers to compile compat-wireless. Ensure /lib/modules/$(uname -r)/build/ exists and points to the location where the kernel headers are installed. If you do not have them, read your distribution's documentation on getting help.
Unpacking source
After downloading, unpack the source by typing (as example: version 2.6.32-rc5):
tar -xf /path/to/compat-wireless-2.6.32-rc5.tar.bz2
Note: Modern tar selects decompressor automatically (otherwise add "–bzip2" or "-j").
Also, please unpack it to a path that does not contain space. The kernel build system is unable to handle spaces in the module tree's directory and will fail if there is any.
Building and installing
cd /path/to/compat-wireless-2.6.32-rc5 ./scripts/driver-select <driver-name> make sudo make install
Unloading
After build and installation unload modules and drivers:
sudo make unload
Loading
To load the new shiny drivers either reboot or just modprobe the module you want. To test whether or not the new drivers are being picked up you can use modprobe -l on the modules, you should see the wireless modules being picked up using the updates/ directory instead of the kernel/ directory. For example (ath9k driver):
$ modules="cfg80211 mac80211 ath9k" $ for i in $modules; do sudo modprobe -l $i; done /lib/modules/2.6.27-11-generic/updates/net/wireless/cfg80211.ko /lib/modules/2.6.27-11-generic/updates/net/mac80211/mac80211.ko /lib/modules/2.6.27-11-generic/updates/drivers/net/wireless/ath9k/ath9k.ko
Note that the make install command will output this for you so you can just look at that.
Note #2: If you got no network connection automatically, try to restart your network. For Debian systems do:
sudo /etc/init.d/networking restart
Linux distributions packaging compat-wireless
Please refer to the Linux distributions section for more details.
Bugs
If you find a bug, please ensure you are on the latest kernel for that series. Bugs should be reported upstream on the http://bugzilla.kernel.org/. You may also want to address this on the linux-wireless mailing list first. For more details please see our reporting bugs guidelines.
Patches
If you have a patch for an bug please also ensure you are using the latest release for the respective kernel. If unsure you can ask on the linux-wireless mailing list. If you are sure its a fix you can send the patches to:
To: stable@kernel.org Cc: linux-wireless@vger.kernel.org
Maintaining of releases
Refer to the maintenance section for details on how the stable releases are made and how to checkout the compat-wireless code for those releases. You can also refer to the Generating stable releases section.