summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/2.6.23.nix
blob: 3b8c2c469a75dee54046380e963a218d276aed1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args:
(import ./meta.nix)
( args //
  {
    version = "2.6.23";
    src_hash = { sha256 = "1nyv7004w40l4adzq2b0hrvk3f4iqwngkgrlh8as9cpz6l4prrnl"; };

	systemPatches = [ ];

    config = with args;
      if config != null then config else
      if userModeLinux then ./config-2.6.23-uml else
      if stdenv.system == "i686-linux" then ./config-2.6.23-i686-smp else
      if stdenv.system == "x86_64-linux" then ./config-2.6.23-x86_64-smp else
      abort "No kernel configuration for your platform!";
  }
)