1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 11:03:33 +02:00

Update linux kernel and patches to 5.16.2

This commit is contained in:
kiana-S 2022-01-24 22:46:33 -05:00
parent aaedb765f1
commit 0a8ca19f88
3 changed files with 28 additions and 24 deletions

View File

@ -1,5 +1,5 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
boot.kernelPackages = pkgs.callPackage ./linux-5.13.4 { }; boot.kernelPackages = pkgs.callPackage ./linux-5.16.2 { };
} }

View File

@ -4,7 +4,7 @@ let
patches = repos.linux-surface + "/patches"; patches = repos.linux-surface + "/patches";
surface_kernelPatches = [ surface_kernelPatches = [
{ {
name = "microsoft-surface-patches-linux-5.13.4"; name = "microsoft-surface-patches-linux-5.16.2";
patch = null; patch = null;
structuredExtraConfig = with lib.kernel; { structuredExtraConfig = with lib.kernel; {
# #
@ -77,50 +77,54 @@ let
} }
{ {
name = "ms-surface/0001-surface3-oemb"; name = "ms-surface/0001-surface3-oemb";
patch = patches + "/5.13/0001-surface3-oemb.patch"; patch = patches + "/5.16/0001-surface3-oemb.patch";
} }
{ {
name = "ms-surface/0002-mwifiex"; name = "ms-surface/0002-mwifiex";
patch = patches + "/5.13/0002-mwifiex.patch"; patch = patches + "/5.16/0002-mwifiex.patch";
} }
{ {
name = "ms-surface/0003-ath10k"; name = "ms-surface/0003-ath10k";
patch = patches + "/5.13/0003-ath10k.patch"; patch = patches + "/5.16/0003-ath10k.patch";
} }
{ {
name = "ms-surface/0004-ipts"; name = "ms-surface/0004-ipts";
patch = patches + "/5.13/0004-ipts.patch"; patch = patches + "/5.16/0004-ipts.patch";
}
{
name = "ms-surface/0005-surface-sam-over-hid";
patch = patches + "/5.13/0005-surface-sam-over-hid.patch";
} }
{ {
name = "ms-surface/0006-surface-sam"; name = "ms-surface/0006-surface-sam";
patch = patches + "/5.13/0006-surface-sam.patch"; patch = patches + "/5.16/0006-surface-sam.patch";
} }
{ {
name = "ms-surface/0007-surface-hotplug"; name = "ms-surface/0006-surface-sam-over-hid";
patch = patches + "/5.13/0007-surface-hotplug.patch"; patch = patches + "/5.16/0006-surface-sam-over-hid.patch";
} }
{ {
name = "ms-surface/0008-surface-typecover"; name = "ms-surface/0007-surface-gpe";
patch = patches + "/5.13/0008-surface-typecover.patch"; patch = patches + "/5.16/0007-surface-gpe.patch";
} }
{ {
name = "ms-surface/0009-cameras"; name = "ms-surface/0008-surface-button";
patch = patches + "/5.13/0009-cameras.patch"; patch = patches + "/5.16/0008-surface-button.patch";
} }
{ {
name = "ms-surface/0010-amd-gpio"; name = "ms-surface/0009-surface-typecover";
patch = patches + "/5.13/0010-amd-gpio.patch"; patch = patches + "/5.16/0009-surface-typecover.patch";
} }
{ {
name = "ms-surface/0011-amd-s0ix"; name = "ms-surface/0010-cameras";
patch = patches + "/5.13/0011-amd-s0ix.patch"; patch = patches + "/5.16/0010-cameras.patch";
}
{
name = "ms-surface/0011-amd-gpio";
patch = patches + "/5.16/0011-amd-gpio.patch";
}
{
name = "ms-surface/0012-misc-fixes";
patch = patches + "/5.16/0012-misc-fixes.patch";
} }
]; ];
in (with pkgs; in (with pkgs;
recurseIntoAttrs (linuxPackagesFor (callPackage ./linux-5.13.4.nix { recurseIntoAttrs (linuxPackagesFor (callPackage ./linux-5.16.2.nix {
kernelPatches = surface_kernelPatches; kernelPatches = surface_kernelPatches;
}))) })))

View File

@ -4,7 +4,7 @@
with lib; with lib;
buildLinux (args // rec { buildLinux (args // rec {
version = "5.13.4"; version = "5.16.2";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed # modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then modDirVersion = if (modDirVersionArg == null) then
@ -17,6 +17,6 @@ buildLinux (args // rec {
src = fetchurl { src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
sha256 = "7192cd2f654aa6083451dea01b80748fe1eebcf2476a589ef4146590030e7d6c"; sha256 = "ra51jkdlpp33svjjv5cfibh6xr1ljji3dhz2g2lfn12rl2hmg0z";
}; };
} // (args.argsOverride or { })) } // (args.argsOverride or { }))