linux: 5.10.27 -> 5.10.29

This commit is contained in:
Tim Steinbach 2021-04-12 14:23:53 -04:00 committed by Tim Steinbach
parent 643d4c3e4b
commit 72fb1c7a91

View File

@ -3,7 +3,7 @@
with lib;
buildLinux (args // rec {
version = "5.10.27";
version = "5.10.29";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@ -13,7 +13,7 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
sha256 = "1nb95ll66kxiz702gs903n3gy5ialz8cin58l19rqaai55kck7fr";
sha256 = "1v79wylb2kd9gadiqf7dr7jcgynr970bbga09mdn940sq536g30m";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_10 ];