3
0
Fork 0
forked from mirrors/nixpkgs

linux_testing: 4.8-rc6 -> 4.9-rc1

This commit is contained in:
Tim Steinbach 2016-10-18 10:11:05 -04:00
parent 2b1af4fe7c
commit 51c9c2f851
No known key found for this signature in database
GPG key ID: 83FF2ACAEB6C2D24
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;