Skip to content

Commit

Permalink
linux: 4.11-rc2 -> 4.11-rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
NeQuissimus committed Mar 22, 2017
1 parent c458d7c commit 399fa5b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
15 changes: 12 additions & 3 deletions pkgs/os-specific/linux/kernel/common-config.nix
Expand Up @@ -33,14 +33,17 @@ with stdenv.lib;
DEBUG_KERNEL y
DYNAMIC_DEBUG y
BACKTRACE_SELF_TEST n
CPU_NOTIFIER_ERROR_INJECT? n
DEBUG_DEVRES n
DEBUG_STACK_USAGE n
DEBUG_STACKOVERFLOW n
RCU_TORTURE_TEST n
SCHEDSTATS n
DETECT_HUNG_TASK y
${optionalString (versionOlder version "4.10") ''
CPU_NOTIFIER_ERROR_INJECT? n
''}
${optionalString (versionOlder version "4.11") ''
TIMER_STATS y
DEBUG_NX_TEST n
Expand Down Expand Up @@ -303,7 +306,9 @@ with stdenv.lib;
NLS_ISO8859_1 m # VFAT default for the iocharset= mount option
# Runtime security tests
DEBUG_SET_MODULE_RONX? y # Detect writes to read-only module pages
${optionalString (versionOlder version "4.11") ''
DEBUG_SET_MODULE_RONX? y # Detect writes to read-only module pages
''}
# Security related features.
RANDOMIZE_BASE? y
Expand Down Expand Up @@ -451,7 +456,11 @@ with stdenv.lib;
FTRACE_SYSCALLS y
SCHED_TRACER y
STACK_TRACER y
UPROBE_EVENT? y
${optionalString (versionOlder version "4.11") ''
UPROBE_EVENT? y
''}
${optionalString (versionAtLeast version "4.4") ''
BPF_SYSCALL y
BPF_EVENTS y
Expand Down
6 changes: 3 additions & 3 deletions pkgs/os-specific/linux/kernel/linux-testing.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:

import ./generic.nix (args // rec {
version = "4.11-rc2";
modDirVersion = "4.11.0-rc2";
version = "4.11-rc3";
modDirVersion = "4.11.0-rc3";
extraMeta.branch = "4.11";

src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
sha256 = "1rfdnx7klrb8z9372ydmrsw6bk3i6xqa0am3vjqy75mjp54063vx";
sha256 = "07y54bl2i4qsz36hwbp3k56k8hzjyvs82cimrg0hnp2xca537vxz";
};

features.iwlwifi = true;
Expand Down

0 comments on commit 399fa5b

Please sign in to comment.