mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 23:52:33 +00:00
Some corrections to 2.6.23-rc8; builds now
svn path=/nixpkgs/trunk/; revision=9383
This commit is contained in:
parent
0274e5e95a
commit
1994bd5b6a
|
@ -24,7 +24,7 @@ let
|
||||||
|
|
||||||
lib = import ../../../lib;
|
lib = import ../../../lib;
|
||||||
|
|
||||||
version = "2.6.22.9";
|
version = "2.6.22";
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://kernel/linux/kernel/v2.6/linux-${version}.tar.bz2";
|
url = "mirror://kernel/linux/kernel/v2.6/linux-${version}.tar.bz2";
|
||||||
sha256 = "19rspc22ld2xxdgik10c876m1lbxhcb1k3f31fg404dp21nxvkhq";
|
sha256 = "73c10604c53f1a6ee65ef805293d23903696f8cef864f42d7de9506f0d2ba4c7";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = map (p: p.patch) kernelPatches;
|
patches = map (p: p.patch) kernelPatches;
|
||||||
|
|
|
@ -2818,7 +2818,19 @@ rec {
|
||||||
|
|
||||||
kernel_2_6_23 = import ../os-specific/linux/kernel/linux-2.6.23.nix {
|
kernel_2_6_23 = import ../os-specific/linux/kernel/linux-2.6.23.nix {
|
||||||
inherit fetchurl stdenv perl mktemp module_init_tools;
|
inherit fetchurl stdenv perl mktemp module_init_tools;
|
||||||
kernelPatches = [
|
kernelPatches =
|
||||||
|
[{
|
||||||
|
name = "patch-2.6.23-rc8";
|
||||||
|
patch = fetchurl {
|
||||||
|
url = http://kernel.org/pub/linux/kernel/v2.6/testing/patch-2.6.23-rc8.bz2;
|
||||||
|
sha256 = "1007y8z9zs32fcm1m9ic8dp01jfj7550pr0l2sbhxlwr7v6cy554";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
]
|
||||||
|
++
|
||||||
|
[
|
||||||
|
|
||||||
|
|
||||||
/*{ name = "ext3cow";
|
/*{ name = "ext3cow";
|
||||||
patch = ../os-specific/linux/kernel/linux-2.6.20.3-ext3cow.patch;
|
patch = ../os-specific/linux/kernel/linux-2.6.20.3-ext3cow.patch;
|
||||||
extraConfig =
|
extraConfig =
|
||||||
|
@ -2887,16 +2899,6 @@ rec {
|
||||||
patch = ../lib/empty.file;
|
patch = ../lib/empty.file;
|
||||||
extraConfig =( getConfig ["kernel" "addConfig"] "");
|
extraConfig =( getConfig ["kernel" "addConfig"] "");
|
||||||
}]
|
}]
|
||||||
++
|
|
||||||
[{
|
|
||||||
name = "patch-2.6.23-rc8";
|
|
||||||
patch = fetchurl {
|
|
||||||
url = http://kernel.org/pub/linux/kernel/v2.6/testing/patch-2.6.23-rc8.bz2;
|
|
||||||
sha256 = "1007y8z9zs32fcm1m9ic8dp01jfj7550pr0l2sbhxlwr7v6cy554";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue