1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

linux: 4.18.8 -> 4.18.9

This commit is contained in:
Tim Steinbach 2018-09-20 09:51:32 -04:00
parent 28fee11e1c
commit 7d30b3d10c
No known key found for this signature in database
GPG key ID: 472BFCCA96BD0EDA
2 changed files with 2 additions and 14 deletions

View file

@ -3,7 +3,7 @@
with stdenv.lib;
buildLinux (args // rec {
version = "4.18.8";
version = "4.18.9";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg;
@ -13,6 +13,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "152lz1yim77kpighdcyy1csxs0xf8m2zkwwcz847fqdbd6ninmgi";
sha256 = "0yli3qr9rygqk5zc4w70xb49b8jbgd09cdz4ji5a00krwm8m76ac";
};
} // (args.argsOverride or {}))

View file

@ -14085,18 +14085,6 @@ with pkgs;
# when adding a new linux version
# kernelPatches.cpu-cgroup-v2."4.11"
kernelPatches.modinst_arg_list_too_long
# https://github.com/NixOS/nixpkgs/issues/45165
# TODO: remove this patch once it is merged upstream and released.
(rec {
name = "hid-core-fix-grouping-by-application";
patch = fetchpatch {
name = name + ".patch";
# https://patchwork.kernel.org/patch/10587369/
url = https://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git/patch/?id=0d6c3011409135ea84e2a231b013a22017ff999a;
sha256 = "0bdrv0aqjh0rdjlaaaqpdgrnd9452fa4ggaa1nq2kmik3q00cq4m";
};
})
];
};