summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2018-05-16 03:09:33 +0300
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2018-05-16 03:09:33 +0300
commit6b6a57574828b21632a7b8ff3a99e1465035b93e (patch)
tree07fe10e97c2d0b4cbf45e90952d8c7d948e84c59 /pkgs/os-specific/linux/kernel
parentce018be2d6ce20960b52ebc4bd86e64a5a58ce29 (diff)
parent780592ca6ef752f3f4886a66ed6181095e358db5 (diff)
downloadnixpkgs-6b6a57574828b21632a7b8ff3a99e1465035b93e.tar
nixpkgs-6b6a57574828b21632a7b8ff3a99e1465035b93e.tar.gz
nixpkgs-6b6a57574828b21632a7b8ff3a99e1465035b93e.tar.bz2
nixpkgs-6b6a57574828b21632a7b8ff3a99e1465035b93e.tar.lz
nixpkgs-6b6a57574828b21632a7b8ff3a99e1465035b93e.tar.xz
nixpkgs-6b6a57574828b21632a7b8ff3a99e1465035b93e.tar.zst
nixpkgs-6b6a57574828b21632a7b8ff3a99e1465035b93e.zip
Merge remote-tracking branch 'upstream/master' into staging
Conflicts:
	pkgs/tools/networking/telnet/default.nix
	pkgs/top-level/aliases.nix
Diffstat (limited to 'pkgs/os-specific/linux/kernel')
-rw-r--r--pkgs/os-specific/linux/kernel/common-config.nix5
-rw-r--r--pkgs/os-specific/linux/kernel/linux-testing.nix6
2 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix
index 4af5889fd1c..ec2b2f38795 100644
--- a/pkgs/os-specific/linux/kernel/common-config.nix
+++ b/pkgs/os-specific/linux/kernel/common-config.nix
@@ -636,6 +636,11 @@ with stdenv.lib;
     X86_X2APIC y
     IRQ_REMAP y
   ''}
+  
+  # needed for iwd WPS support (wpa_supplicant replacement)
+  ${optionalString (versionAtLeast version "4.7") ''
+    KEY_DH_OPERATIONS y
+  ''}
 
   # Disable the firmware helper fallback, udev doesn't implement it any more
   FW_LOADER_USER_HELPER_FALLBACK? n
diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix
index 92225670330..691c0d7a0a9 100644
--- a/pkgs/os-specific/linux/kernel/linux-testing.nix
+++ b/pkgs/os-specific/linux/kernel/linux-testing.nix
@@ -1,13 +1,13 @@
 { stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:
 
 buildLinux (args // rec {
-  version = "4.17-rc4";
-  modDirVersion = "4.17.0-rc4";
+  version = "4.17-rc5";
+  modDirVersion = "4.17.0-rc5";
   extraMeta.branch = "4.17";
 
   src = fetchurl {
     url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
-    sha256 = "1y34hpzgxblwqslhsfsmzmpv9f3s936r93wgn4kmhkcwsm0in292";
+    sha256 = "1khx3s8nb604h23hasamshcvcwll0j4vi5v6v274ls01ja9mg1xk";
   };
 
   # Should the testing kernels ever be built on Hydra?