Skip to content

Commit

Permalink
linux-copperhead: 4.14.12.a -> 4.14.13.a
Browse files Browse the repository at this point in the history
(cherry picked from commit eb0ecd7)
  • Loading branch information
NeQuissimus committed Jan 11, 2018
1 parent 01c18ee commit d7ce22e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/kernel/common-config.nix
Expand Up @@ -342,7 +342,7 @@ with stdenv.lib;
# Security related features.
RANDOMIZE_BASE? y
STRICT_DEVMEM y # Filter access to /dev/mem
STRICT_DEVMEM? y # Filter access to /dev/mem
SECURITY_SELINUX_BOOTPARAM_VALUE 0 # Disable SELinux by default
SECURITY_YAMA? y # Prevent processes from ptracing non-children processes
DEVKMEM n # Disable /dev/kmem
Expand Down
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/kernel/hardened-config.nix
Expand Up @@ -61,8 +61,8 @@ ${optionalString (versionAtLeast version "4.12") ''
DEBUG_WX y # boot-time warning on RWX mappings
# Stricter /dev/mem
STRICT_DEVMEM y
IO_STRICT_DEVMEM y
STRICT_DEVMEM? y
IO_STRICT_DEVMEM? y
# Perform additional validation of commonly targeted structures.
DEBUG_CREDENTIALS y
Expand Down
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/kernel/linux-hardened-copperhead.nix
Expand Up @@ -3,9 +3,9 @@
with stdenv.lib;

let
version = "4.14.12";
version = "4.14.13";
revision = "a";
sha256 = "002a3c177fix472wqc89zrpfzwk60l7dn76l869ivgnd60n6wqb2";
sha256 = "08fvb1lllb0xkckw2y66g0j5z88kp877r51jj3kksfkvjfibjr0j";

# modVersion needs to be x.y.z, will automatically add .0 if needed
modVersion = concatStrings (intersperse "." (take 3 (splitString "." "${version}.0")));
Expand Down

0 comments on commit d7ce22e

Please sign in to comment.