summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRicardo Correia <github.com@wizy.org>2014-02-17 18:32:08 +0100
committerRicardo Correia <github.com@wizy.org>2014-02-17 18:32:08 +0100
commit09b23658069eee3f070aec5585938c968dc6e5dc (patch)
treeab2757273bcef3178611b50978e0bf2f3676aa99
parentba9cc84ad0e72666cc3abac8f398f768ac3675a5 (diff)
parentc13701532843024e8cb1be070a9b293c6d527fa0 (diff)
Merge pull request #1764 from thoughtpolice/grsec
linux-3.2 & grsecurity updates
-rw-r--r--pkgs/os-specific/linux/kernel/linux-3.2.nix4
-rw-r--r--pkgs/os-specific/linux/kernel/patches.nix12
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-3.2.nix b/pkgs/os-specific/linux/kernel/linux-3.2.nix
index f9135ea3e11d..cee4bf31dfe9 100644
--- a/pkgs/os-specific/linux/kernel/linux-3.2.nix
+++ b/pkgs/os-specific/linux/kernel/linux-3.2.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // rec {
- version = "3.2.54";
+ version = "3.2.55";
extraMeta.branch = "3.2";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz";
- sha256 = "15mr1mrsldvs3jx9nc25pfmmdbz2ykiaxnqc26chn6k425l4kn67";
+ sha256 = "15fj7kd3ba52in1siqbdq45i7xzb53yy88l9k4bgfgds3j8wxj9m";
};
features.iwlwifi = true;
diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix
index c36779c295f5..2480936b08cd 100644
--- a/pkgs/os-specific/linux/kernel/patches.nix
+++ b/pkgs/os-specific/linux/kernel/patches.nix
@@ -78,11 +78,11 @@ rec {
};
- grsecurity_3_0_3_2_54 =
- { name = "grsecurity-3.0-3.2.54";
+ grsecurity_3_0_3_2_55 =
+ { name = "grsecurity-3.0-3.2.55";
patch = fetchurl {
- url = https://grsecurity.net/stable/grsecurity-3.0-3.2.54-201402062221.patch;
- sha256 = "14x887xibl7d50a1pxmi0snnwcnh27z8bnidhxg2xfasxxp248m5";
+ url = http://grsecurity.net/stable/grsecurity-3.0-3.2.55-201402152203.patch;
+ sha256 = "1600hydfq2dwyqqzfmsvy50kcicdm2lq44yiiwgnbiykq2135fwx";
};
features.grsecurity = true;
# The grsec kernel patch seems to include the apparmor patches as of 3.0-3.2.54
@@ -92,8 +92,8 @@ rec {
grsecurity_3_0_3_13_3 =
{ name = "grsecurity-3.0-3.13.3";
patch = fetchurl {
- url = http://grsecurity.net/test/grsecurity-3.0-3.13.3-201402132113.patch;
- sha256 = "143givk7xk54c2f9q7h2v5gdc3sy1kcd8j83vn1jfcyipzqkdqnk";
+ url = http://grsecurity.net/test/grsecurity-3.0-3.13.3-201402152204.patch;
+ sha256 = "0c4mswka95zivil3a28ipsbnv2nhrmqwj4l4dig3n8pr6d2vgwc9";
};
features.grsecurity = true;
# The grsec kernel patch seems to include the apparmor patches as of 3.0-3.13.2
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index ba46fff4df08..c094bb2b9a7e 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -6674,7 +6674,7 @@ let
# config options you need (e.g. by overriding extraConfig). See list of options here:
# https://en.wikibooks.org/wiki/Grsecurity/Appendix/Grsecurity_and_PaX_Configuration_Options
linux_3_2_grsecurity = lowPrio (lib.overrideDerivation (linux_3_2.override (args: {
- kernelPatches = args.kernelPatches ++ [ kernelPatches.grsecurity_3_0_3_2_54 kernelPatches.grsec_path ];
+ kernelPatches = args.kernelPatches ++ [ kernelPatches.grsecurity_3_0_3_2_55 kernelPatches.grsec_path ];
argsOverride = {
modDirVersion = "${linux_3_2.modDirVersion}-grsec";
};