mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-09 03:56:09 +01:00
Merge branch 'microsoft/surface/refactor-kernel-code' into microsoft/surface/kernel-6.0.11
This commit is contained in:
commit
76c6688e86
3 changed files with 78 additions and 2 deletions
|
|
@ -28,6 +28,14 @@ let
|
|||
pkgs.callPackage ./linux-5.19.17.nix { inherit repos; }
|
||||
);
|
||||
|
||||
linux-6_0_11 = linuxPackage (
|
||||
pkgs.callPackage ./linux-6.0.11.nix { inherit repos; }
|
||||
);
|
||||
|
||||
in {
|
||||
<<<<<<< Updated upstream
|
||||
boot.kernelPackages = linux-5_19_17;
|
||||
=======
|
||||
boot.kernelPackages = linux-6_0_11;
|
||||
>>>>>>> Stashed changes
|
||||
}
|
||||
|
|
|
|||
68
microsoft/surface/kernel/linux-6.0.11.nix
Normal file
68
microsoft/surface/kernel/linux-6.0.11.nix
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
{ lib,
|
||||
fetchurl,
|
||||
repos,
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (lib) kernel;
|
||||
version = "6.0.11";
|
||||
branch = "6.0";
|
||||
patches = repos.linux-surface + "/patches/${branch}";
|
||||
|
||||
in {
|
||||
inherit version branch;
|
||||
modDirVersion = version;
|
||||
src = fetchurl {
|
||||
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
|
||||
sha256 = "sha256-K65hMeZJceHjT/OV+lQpcRNMhXvbCykGmrhHx8mpx2I=";
|
||||
};
|
||||
|
||||
kernelPatches = [
|
||||
{
|
||||
name = "microsoft-surface-patches-linux-${version}";
|
||||
patch = null;
|
||||
structuredExtraConfig = with lib.kernel; {
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "ms-surface/0001-surface3-oemb";
|
||||
patch = patches + "/0001-surface3-oemb.patch";
|
||||
}
|
||||
{
|
||||
name = "ms-surface/0002-mwifiex";
|
||||
patch = patches + "/0002-mwifiex.patch";
|
||||
}
|
||||
{
|
||||
name = "ms-surface/0003-ath10k";
|
||||
patch = patches + "/0003-ath10k.patch";
|
||||
}
|
||||
{
|
||||
name = "ms-surface/0004-ipts";
|
||||
patch = patches + "/0004-ipts.patch";
|
||||
}
|
||||
{
|
||||
name = "ms-surface/0005-surface-sam";
|
||||
patch = patches + "/0005-surface-sam.patch";
|
||||
}
|
||||
{
|
||||
name = "ms-surface/0006-surface-sam-over-hid";
|
||||
patch = patches + "/0006-surface-sam-over-hid.patch";
|
||||
}
|
||||
{
|
||||
name = "ms-surface/0007-surface-button";
|
||||
patch = patches + "/0007-surface-button.patch";
|
||||
}
|
||||
{
|
||||
name = "ms-surface/0008-surface-typecover";
|
||||
patch = patches + "/0008-surface-typecover.patch";
|
||||
}
|
||||
{
|
||||
name = "ms-surface/0009-cameras";
|
||||
patch = patches + "/0009-cameras.patch";
|
||||
}
|
||||
# {
|
||||
# name = "ms-surface/0010-amd-gpio";
|
||||
# patch = patches + "/0010-amd-gpio.patch";
|
||||
# }
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue