grsecurity: Update patches

This commit is contained in:
William A. Kennington III 2015-09-16 13:35:41 -07:00
parent 5a0759971f
commit 84505bd36a
2 changed files with 11 additions and 6 deletions

View File

@ -82,10 +82,10 @@ rec {
}; };
grsecurity_unstable = grsecPatch grsecurity_unstable = grsecPatch
{ kversion = "4.1.6"; { kversion = "4.1.7";
revision = "201508181953"; revision = "201509131604";
branch = "test"; branch = "test";
sha256 = "1m227k1wb1q588vkgmngcz86k0wpzan6vra67pcx2478mabm3s89"; sha256 = "1frfyi1pkiqc3awri3sr7xv41qxc8m2kb1yhfvj6xkrwb9li2bki";
}; };
grsec_fix_path = grsec_fix_path =

View File

@ -9667,9 +9667,14 @@ let
grPackage = opts: recurseIntoAttrs (mkGrsecurity opts).grsecPackage; grPackage = opts: recurseIntoAttrs (mkGrsecurity opts).grsecPackage;
# Stable kernels # Stable kernels
linux_grsec_stable_desktop = grKernel grFlavors.linux_grsec_stable_desktop; # This is no longer supported. Please see the official announcement on the
linux_grsec_stable_server = grKernel grFlavors.linux_grsec_stable_server; # grsecurity page. https://grsecurity.net/announce.php
linux_grsec_stable_server_xen = grKernel grFlavors.linux_grsec_stable_server_xen; linux_grsec_stable_desktop = throw "No longer supported due to https://grsecurity.net/announce.php. "
+ "Please use linux_grsec_testing_desktop.";
linux_grsec_stable_server = throw "No longer supported due to https://grsecurity.net/announce.php. "
+ "Please use linux_grsec_testing_server.";
linux_grsec_stable_server_xen = throw "No longer supporteddue to https://grsecurity.net/announce.php. "
+ "Please use linux_grsec_testing_server_xen.";
# Testing kernels # Testing kernels
linux_grsec_testing_desktop = grKernel grFlavors.linux_grsec_testing_desktop; linux_grsec_testing_desktop = grKernel grFlavors.linux_grsec_testing_desktop;