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@464ed18ebd, the option
PM_RUNTIME doesn't exist anymore, so we need to remove it from our
common config.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2015-01-22 09:48:50 +01:00
parent f1d18192d4
commit 8ac1765e28
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
2 changed files with 7 additions and 5 deletions

View File

@ -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
''}

View File

@ -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;