From 8ac1765e28da58e2dea4cc0ce6b53fbb491d297b Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 22 Jan 2015 09:48:50 +0100 Subject: [PATCH] linux-testing: Update to version 3.19-rc5. Using linux-testing for a bunch of machines, I'd actually expect it to be more recent than the latest stable, but until now it actually was behind. Since torvalds/linux@464ed18ebdb6236fcff59d2a35d4d2e28, the option PM_RUNTIME doesn't exist anymore, so we need to remove it from our common config. Signed-off-by: aszlig --- pkgs/os-specific/linux/kernel/common-config.nix | 4 +++- pkgs/os-specific/linux/kernel/linux-testing.nix | 8 ++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index ef061459191..4f08e5a6fd8 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -6,7 +6,9 @@ with stdenv.lib; # Power management and debugging. DEBUG_KERNEL y PM_ADVANCED_DEBUG y - PM_RUNTIME y + ${optionalString (versionOlder version "3.19") '' + PM_RUNTIME y + ''} ${optionalString (versionAtLeast version "3.10") '' X86_INTEL_PSTATE y ''} diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 69cefcda698..ce94288529e 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, ... } @ args: import ./generic.nix (args // rec { - version = "3.18-rc7"; - modDirVersion = "3.18.0-rc7"; - extraMeta.branch = "3.18"; + version = "3.19-rc5"; + modDirVersion = "3.19.0-rc5"; + extraMeta.branch = "3.19"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/testing/linux-${version}.tar.xz"; - sha256 = "1zq7jd33jq4ibvjdsj8cm4zlgjag7j8r7w7ajmzivr7npdb9fvvk"; + sha256 = "1n1bzdczqi9lqb6sahm1g9f59v1h6vp6r4skyi40dk3v2xacb0nw"; }; features.iwlwifi = true;