linux: 4.13-rc7 -> 4.14-rc1

This commit is contained in:
Tim Steinbach 2017-09-17 09:11:04 -04:00
parent d72747eacd
commit c8f43edaf5
No known key found for this signature in database
GPG key ID: 472BFCCA96BD0EDA
2 changed files with 7 additions and 5 deletions

View file

@ -565,7 +565,9 @@ with stdenv.lib;
# Media support.
MEDIA_DIGITAL_TV_SUPPORT y
MEDIA_CAMERA_SUPPORT y
MEDIA_RC_SUPPORT y
${optionalString (versionOlder version "4.14") ''
MEDIA_RC_SUPPORT y
''}
MEDIA_USB_SUPPORT y
MEDIA_PCI_SUPPORT y

View file

@ -1,13 +1,13 @@
{ stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
version = "4.13-rc7";
modDirVersion = "4.13.0-rc7";
extraMeta.branch = "4.13";
version = "4.14-rc1";
modDirVersion = "4.14.0-rc1";
extraMeta.branch = "4.14";
src = fetchurl {
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
sha256 = "1xkfxsvdhd0xcfjcr78222sa58i02z2ca9fv804jbyp7w9g628rm";
sha256 = "0dhcsjgcy28pyyzwf2s0862p92bwb324kapli2y9n90bw0kl53gi";
};
features.iwlwifi = true;