linux: 4.16-rc7 -> 4.17-rc1
This commit is contained in:
parent
329ca7db6c
commit
f8665f18fb
@ -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
|
||||
@ -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
|
||||
@ -420,7 +422,9 @@ with stdenv.lib;
|
||||
${optionalString (versionAtLeast version "4.3") ''
|
||||
IDLE_PAGE_TRACKING y
|
||||
''}
|
||||
${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
|
||||
|
@ -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?
|
||||
|
Loading…
Reference in New Issue
Block a user