Contents
Stable compat-wireless releases
This page is dedicated to the stable kernel compat-wireless releases. These releases are based on stable kernel versions. 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.
Releases
Kernel release |
sha1sum |
size |
ChangeLog-wireless |
4e33700b4200eca9c562b18b8f97992ab5edb544 |
1.9 MB |
||
95d3227cb79ac8a706994d6a5a6bff4e1c2c1a5d |
2.2 MB |
||
8692e5c21d907cebc31f8061171a7174dd89d99f |
2.3 MB |
||
95a44314284e68ea8902b42bd7a41e0b613efe64 |
2.5 MB |
||
8c0c13bc0945dc41999d39af7397502c2cf7a4bb |
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").
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
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.