linux: 4.11-rc2 -> 4.11-rc3
This commit is contained in:
parent
693d0e7fea
commit
c60102d177
@ -33,7 +33,6 @@ 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
|
||||
@ -41,6 +40,10 @@ with stdenv.lib;
|
||||
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
|
||||
@ -308,7 +311,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
|
||||
@ -456,7 +461,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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user