linux_5_13: init at 5.13

(cherry picked from commit 367a53a82b0a3ffe6c1ea4261c22764129994669)
This commit is contained in:
Yurii Matsiuk
2021-07-02 13:50:19 -07:00
committed by Jonathan Ringer
parent db3b901f0b
commit 23b6a0735b
2 changed files with 29 additions and 0 deletions
@@ -0,0 +1,21 @@
{ lib, buildPackages, fetchurl, perl, buildLinux, nixosTests, modDirVersionArg ? null, ... } @ args:
with lib;
buildLinux (args // rec {
version = "5.13";
# 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;
# branchVersion needs to be x.y
extraMeta.branch = versions.majorMinor version;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
sha256 = "sha256-P2uql/N1GEOfUd8uTz1lqCLKX/AWqo5g0sxTuVpsidk=";
};
kernelTests = args.kernelTests or [ nixosTests.kernel-generic.linux_5_13 ];
} // (args.argsOverride or { }))