nixpkgs/pkgs/os-specific/linux/kernel/linux-2.6.29.nix
Lluís Batlle i Rossell 4b27d28701 Porting changes from stdenv-updates into this branch.
This comes from:
svn diff  ^/nixpkgs/trunk/@18255 ^/nixpkgs/branches/stdenv-updates/ > diff
patch -p0 < diff
and then adding into svn all files new from the patch.

trunk@18255 comes from the last time I updated stdenv-updates from trunk.


svn path=/nixpkgs/stdenv-updates2/; revision=18272
2009-11-08 00:32:12 +00:00

28 lines
676 B
Nix

args @ {stdenv, fetchurl, userModeLinux ? false, ...}:
assert !userModeLinux;
import ./generic.nix (
rec {
version = "2.6.29.6";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v2.6/linux-${version}.tar.bz2";
sha256 = "1yf5xhdnpcyhw4y78v35wyidlsyzxvbbnzw6jd31zni7ira6jvjk";
};
features = {
iwlwifi = true;
};
config =
if stdenv.system == "i686-linux" then ./config-2.6.29-i686-smp else
if stdenv.system == "x86_64-linux" then ./config-2.6.29-x86_64-smp else
if stdenv.system == "armv5tel-linux" then ./config-2.6.29-arm else
abort "No kernel configuration for your platform!";
}
// args
)