mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
TuxOnIce: Add a 3.10 linux kernel with the TuxOnIce hibernation patch
This commit is contained in:
parent
67e3258ab5
commit
a34354ef81
@ -3,7 +3,7 @@
|
||||
let
|
||||
|
||||
makeTuxonicePatch = { version, kernelVersion, sha256,
|
||||
url ? "http://tuxonice.net/files/tuxonice-${version}-for-${kernelVersion}.patch.bz2" }:
|
||||
url ? "http://tuxonice.nigelcunningham.com.au/downloads/all/tuxonice-for-linux-${kernelVersion}-${version}.patch.bz2" }:
|
||||
{ name = "tuxonice-${kernelVersion}";
|
||||
patch = stdenv.mkDerivation {
|
||||
name = "tuxonice-${version}-for-${kernelVersion}.patch";
|
||||
@ -117,6 +117,13 @@ rec {
|
||||
patch = ./mips-ext3-n32.patch;
|
||||
};
|
||||
|
||||
tuxonice_3_10 = makeTuxonicePatch {
|
||||
version = "2013-11-07";
|
||||
kernelVersion = "3.10.18";
|
||||
sha256 = "00b1rqgd4yr206dxp4mcymr56ymbjcjfa4m82pxw73khj032qw3j";
|
||||
};
|
||||
|
||||
|
||||
grsecurity_2_9_1_3_2_52 =
|
||||
{ name = "grsecurity-2.9.1-3.2.52";
|
||||
patch = fetchurl {
|
||||
|
@ -6690,6 +6690,15 @@ let
|
||||
];
|
||||
};
|
||||
|
||||
linux_3_10_tuxonice = linux_3_10.override (attrs: {
|
||||
kernelPatches = attrs.kernelPatches ++ [
|
||||
kernelPatches.tuxonice_3_10
|
||||
];
|
||||
extraConfig = ''
|
||||
TOI_CORE y
|
||||
'';
|
||||
});
|
||||
|
||||
linux_3_11 = makeOverridable (import ../os-specific/linux/kernel/linux-3.11.nix) {
|
||||
inherit fetchurl stdenv perl mktemp bc kmod ubootChooser;
|
||||
kernelPatches =
|
||||
@ -6832,6 +6841,7 @@ let
|
||||
linuxPackages_3_4_apparmor = linuxPackagesFor pkgs.linux_3_4_apparmor linuxPackages_3_4_apparmor;
|
||||
linuxPackages_3_6_rpi = linuxPackagesFor pkgs.linux_3_6_rpi linuxPackages_3_6_rpi;
|
||||
linuxPackages_3_10 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_10 linuxPackages_3_10);
|
||||
linuxPackages_3_10_tuxonice = linuxPackagesFor pkgs.linux_3_10_tuxonice linuxPackages_3_10_tuxonice;
|
||||
linuxPackages_3_11 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_11 linuxPackages_3_11);
|
||||
linuxPackages_3_12 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_3_12 linuxPackages_3_12);
|
||||
# Update this when adding a new version!
|
||||
|
Loading…
Reference in New Issue
Block a user