Skip to content

Commit 4f02e7b

Browse files
NeQuissimusdomenkozar
authored andcommittedJul 4, 2017
linux-testing: 4.11-rc7 -> 4.12-rc1
(cherry picked from commit 336b044) Signed-off-by: Domen Kožar <domen@dev.si>
1 parent 81fceb2 commit 4f02e7b

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed
 

‎pkgs/os-specific/linux/kernel/common-config.nix

+6-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,9 @@ with stdenv.lib;
205205
SND_HDA_RECONFIG y # Support reconfiguration of jack functions
206206
SND_HDA_PATCH_LOADER y # Support configuring jack functions via fw mechanism at boot
207207
SND_USB_CAIAQ_INPUT y
208-
PSS_MIXER y # Enable PSS mixer (Beethoven ADSP-16 and other compatible)
208+
${optionalString (versionOlder version "4.12") ''
209+
PSS_MIXER y # Enable PSS mixer (Beethoven ADSP-16 and other compatible)
210+
''}
209211
210212
# USB serial devices.
211213
USB_SERIAL_GENERIC y # USB Generic Serial Driver
@@ -490,7 +492,9 @@ with stdenv.lib;
490492
${optionalString ((versionAtLeast version "4.0") && (versionOlder version "4.12")) ''
491493
KVM_COMPAT? y
492494
''}
493-
KVM_DEVICE_ASSIGNMENT? y
495+
${optionalString (versionOlder version "4.12") ''
496+
KVM_DEVICE_ASSIGNMENT? y
497+
''}
494498
${optionalString (versionAtLeast version "4.0") ''
495499
KVM_GENERIC_DIRTYLOG_READ_PROTECT y
496500
''}

‎pkgs/os-specific/linux/kernel/linux-testing.nix

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
22

33
import ./generic.nix (args // rec {
4-
version = "4.11-rc4";
5-
modDirVersion = "4.11.0-rc4";
6-
extraMeta.branch = "4.11";
4+
version = "4.12-rc1";
5+
modDirVersion = "4.12.0-rc1";
6+
extraMeta.branch = "4.12";
77

88
src = fetchurl {
9-
url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz";
10-
sha256 = "0kvp5zkq54ahxp59d33fpzf3jpr5k0jjfbxc1kfqwxvlkgznmd7h";
9+
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
10+
sha256 = "13xyiqn7xv8ryqrfsx8b18qm1zj0qkfz92mdh611nqhhdlw7gcpk";
1111
};
1212

1313
features.iwlwifi = true;

0 commit comments

Comments
 (0)
Please sign in to comment.