Skip to content

Commit

Permalink
linux: 4.16-rc7 -> 4.17-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
NeQuissimus committed Apr 18, 2018
1 parent 329ca7d commit f8665f1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions pkgs/os-specific/linux/kernel/common-config.nix
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ with stdenv.lib;
# Enable various subsystems.
ACCESSIBILITY y # Accessibility support
AUXDISPLAY y # Auxiliary Display support
DONGLE y # Serial dongle support
HIPPI y
MTD_COMPLEX_MAPPINGS y # needed for many devices
SCSI_LOWLEVEL y # enable lots of SCSI devices
Expand All @@ -124,6 +123,9 @@ with stdenv.lib;
SPI y # needed for many devices
SPI_MASTER y
WAN y
${optionalString (versionOlder version "4.17") ''
DONGLE y # Serial dongle support
''}
# Networking options.
NET y
Expand Down Expand Up @@ -420,7 +422,9 @@ with stdenv.lib;
${optionalString (versionAtLeast version "4.3") ''
IDLE_PAGE_TRACKING y
''}
IRDA_ULTRA y # Ultra (connectionless) protocol
${optionalString (versionOlder version "4.17") ''
IRDA_ULTRA y # Ultra (connectionless) protocol
''}
JOYSTICK_IFORCE_232? y # I-Force Serial joysticks and wheels
JOYSTICK_IFORCE_USB? y # I-Force USB joysticks and wheels
JOYSTICK_XPAD_FF? y # X-Box gamepad rumble support
Expand Down
8 changes: 4 additions & 4 deletions pkgs/os-specific/linux/kernel/linux-testing.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, buildPackages, hostPlatform, fetchurl, perl, buildLinux, libelf, utillinux, ... } @ args:

buildLinux (args // rec {
version = "4.16-rc7";
modDirVersion = "4.16.0-rc7";
extraMeta.branch = "4.16";
version = "4.17-rc1";
modDirVersion = "4.17.0-rc1";
extraMeta.branch = "4.17";

src = fetchurl {
url = "https://git.kernel.org/torvalds/t/linux-${version}.tar.gz";
sha256 = "13zpfjxd38202afjl6flc9brjw3sp4sfq3wls0v90k1i2b308qfi";
sha256 = "0a3lrax6f8f98lj65aawpqkzkmxcl2x4h20kr0cr7wf0jvpnn5y3";
};

# Should the testing kernels ever be built on Hydra?
Expand Down

0 comments on commit f8665f1

Please sign in to comment.