Merge pull request #19652 from NeQuissimus/linux_4_9_rc1

linux_testing: 4.8-rc6 -> 4.9-rc1
This commit is contained in:
Tim Steinbach 2016-10-19 14:35:21 -04:00 committed by GitHub
commit 70c8de0536
2 changed files with 5 additions and 5 deletions

View file

@ -180,7 +180,7 @@ with stdenv.lib;
VGA_SWITCHEROO y # Hybrid graphics support
DRM_GMA600 y
DRM_GMA3600 y
${optionalString (versionAtLeast version "4.5") ''
${optionalString (versionAtLeast version "4.5" && (versionOlder version "4.9")) ''
DRM_AMD_POWERPLAY y # necessary for amdgpu polaris support
''}

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
version = "4.8-rc6";
modDirVersion = "4.8.0-rc6";
extraMeta.branch = "4.8";
version = "4.9-rc1";
modDirVersion = "4.9.0-rc1";
extraMeta.branch = "4.9";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
sha256 = "122qn2r3q85xqcb56lgpkiv06yrd5w742fcdjk1sribqcvl1xlqr";
sha256 = "1s123bs20zp1zzy0i12y63n6wsr9cwaad4110rl5ir49j6z6byqf";
};
features.iwlwifi = true;