1
0
Fork 0

linux_5_9: init at 5.9.3

This also points linuxPackages_latest to 5.9.
main
Andreas Wiese 2020-11-04 22:57:09 +01:00
parent 7d45aba7ad
commit a309adebc2
2 changed files with 28 additions and 0 deletions

View File

@ -6,4 +6,14 @@ let
in
with self; rec {
linux_5_9 = callPackage ./pkgs/linux/linux-5.9.nix {
kernelPatches = [
kernelPatches.bridge_stp_helper
kernelPatches.request_key_helper
kernelPatches.export_kernel_fpu_functions."5.3"
];
};
linuxPackages_5_9 = recurseIntoAttrs (linuxPackagesFor linux_5_9);
linuxPackages_latest = linuxPackages_5_9;
}

18
pkgs/linux/linux-5.9.nix Normal file
View File

@ -0,0 +1,18 @@
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:
with stdenv.lib;
buildLinux (args // rec {
version = "5.9.3";
# 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 = "0wwa6557i9l4vyswz26ixz8c2ykxnzqrsc9pwkr76nyjx7gjibni";
};
} // (args.argsOverride or {}))