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, ... }:
{
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";
surface_kernelPatches = [
{
name = "microsoft-surface-patches-linux-5.13.4";
name = "microsoft-surface-patches-linux-5.16.2";
patch = null;
structuredExtraConfig = with lib.kernel; {
#
@ -77,50 +77,54 @@ let
}
{
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";
patch = patches + "/5.13/0002-mwifiex.patch";
patch = patches + "/5.16/0002-mwifiex.patch";
}
{
name = "ms-surface/0003-ath10k";
patch = patches + "/5.13/0003-ath10k.patch";
patch = patches + "/5.16/0003-ath10k.patch";
}
{
name = "ms-surface/0004-ipts";
patch = patches + "/5.13/0004-ipts.patch";
}
{
name = "ms-surface/0005-surface-sam-over-hid";
patch = patches + "/5.13/0005-surface-sam-over-hid.patch";
patch = patches + "/5.16/0004-ipts.patch";
}
{
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";
patch = patches + "/5.13/0007-surface-hotplug.patch";
name = "ms-surface/0006-surface-sam-over-hid";
patch = patches + "/5.16/0006-surface-sam-over-hid.patch";
}
{
name = "ms-surface/0008-surface-typecover";
patch = patches + "/5.13/0008-surface-typecover.patch";
name = "ms-surface/0007-surface-gpe";
patch = patches + "/5.16/0007-surface-gpe.patch";
}
{
name = "ms-surface/0009-cameras";
patch = patches + "/5.13/0009-cameras.patch";
name = "ms-surface/0008-surface-button";
patch = patches + "/5.16/0008-surface-button.patch";
}
{
name = "ms-surface/0010-amd-gpio";
patch = patches + "/5.13/0010-amd-gpio.patch";
name = "ms-surface/0009-surface-typecover";
patch = patches + "/5.16/0009-surface-typecover.patch";
}
{
name = "ms-surface/0011-amd-s0ix";
patch = patches + "/5.13/0011-amd-s0ix.patch";
name = "ms-surface/0010-cameras";
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;
recurseIntoAttrs (linuxPackagesFor (callPackage ./linux-5.13.4.nix {
recurseIntoAttrs (linuxPackagesFor (callPackage ./linux-5.16.2.nix {
kernelPatches = surface_kernelPatches;
})))

View File

@ -4,7 +4,7 @@
with lib;
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 = if (modDirVersionArg == null) then
@ -17,6 +17,6 @@ buildLinux (args // rec {
src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
sha256 = "7192cd2f654aa6083451dea01b80748fe1eebcf2476a589ef4146590030e7d6c";
sha256 = "ra51jkdlpp33svjjv5cfibh6xr1ljji3dhz2g2lfn12rl2hmg0z";
};
} // (args.argsOverride or { }))