linux: 4.13-rc7 -> 4.14-rc1

+7 -5
+3 -1
pkgs/os-specific/linux/kernel/common-config.nix
··· 565 # Media support. 566 MEDIA_DIGITAL_TV_SUPPORT y 567 MEDIA_CAMERA_SUPPORT y 568 - MEDIA_RC_SUPPORT y 569 MEDIA_USB_SUPPORT y 570 MEDIA_PCI_SUPPORT y 571
··· 565 # Media support. 566 MEDIA_DIGITAL_TV_SUPPORT y 567 MEDIA_CAMERA_SUPPORT y 568 + ${optionalString (versionOlder version "4.14") '' 569 + MEDIA_RC_SUPPORT y 570 + ''} 571 MEDIA_USB_SUPPORT y 572 MEDIA_PCI_SUPPORT y 573
+4 -4
pkgs/os-specific/linux/kernel/linux-testing.nix
··· 1 { stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args: 2 3 import ./generic.nix (args // rec { 4 - version = "4.13-rc7"; 5 - modDirVersion = "4.13.0-rc7"; 6 - extraMeta.branch = "4.13"; 7 8 src = fetchurl { 9 url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz"; 10 - sha256 = "1xkfxsvdhd0xcfjcr78222sa58i02z2ca9fv804jbyp7w9g628rm"; 11 }; 12 13 features.iwlwifi = true;
··· 1 { stdenv, hostPlatform, fetchurl, perl, buildLinux, ... } @ args: 2 3 import ./generic.nix (args // rec { 4 + version = "4.14-rc1"; 5 + modDirVersion = "4.14.0-rc1"; 6 + extraMeta.branch = "4.14"; 7 8 src = fetchurl { 9 url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz"; 10 + sha256 = "0dhcsjgcy28pyyzwf2s0862p92bwb324kapli2y9n90bw0kl53gi"; 11 }; 12 13 features.iwlwifi = true;