mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
Merge pull request #19652 from NeQuissimus/linux_4_9_rc1
linux_testing: 4.8-rc6 -> 4.9-rc1
This commit is contained in:
commit
70c8de0536
|
@ -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
|
||||
''}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue