summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/linux-2.6.25.nix
blob: 680304582db873066cd5fefc07df297d228c6a20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
args @ {stdenv, fetchurl, userModeLinux ? false, ...}:

import ./generic.nix (

  rec {
    version = "2.6.25.20";
  
    src = fetchurl {
      url = "mirror://kernel/linux/kernel/v2.6/linux-${version}.tar.bz2";
      sha256 = "07knyjhvanvclk6xdwi07vfvsmiqciqaj26cn78ayiqqqr9d4f6y";
    };

    features = {
      iwlwifi = true;
    };
 
    config =
      if userModeLinux then ./config-2.6.25-uml else
      if stdenv.system == "i686-linux" then ./config-2.6.25-i686-smp else
      if stdenv.system == "x86_64-linux" then ./config-2.6.25-x86_64-smp else
      abort "No kernel configuration for your platform!";
  }

  // args
)