mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-23 11:29:42 +01:00
Merge remote-tracking branch 'upstream/master' into microsoft/surface/6.1.3
This commit is contained in:
commit
d5c4a26bb1
4 changed files with 14 additions and 10 deletions
|
@ -9,7 +9,7 @@ in {
|
||||||
./firmware/surface-go/ath10k
|
./firmware/surface-go/ath10k
|
||||||
];
|
];
|
||||||
|
|
||||||
microsoft-surface.kernelVersion = mkDefault "6.0.11";
|
microsoft-surface.kernelVersion = mkDefault "6.0.17";
|
||||||
|
|
||||||
boot.extraModprobeConfig = mkDefault ''
|
boot.extraModprobeConfig = mkDefault ''
|
||||||
options i915 enable_fbc=1 enable_rc6=1 modeset=1
|
options i915 enable_fbc=1 enable_rc6=1 modeset=1
|
||||||
|
|
|
@ -6,7 +6,7 @@ let
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
./linux-5.19.17
|
./linux-5.19.17
|
||||||
./linux-6.0.11
|
./linux-6.0.17
|
||||||
./linux-6.1.3
|
./linux-6.1.3
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ let
|
||||||
|
|
||||||
cfg = config.microsoft-surface;
|
cfg = config.microsoft-surface;
|
||||||
|
|
||||||
version = "6.0.11";
|
version = "6.0.17";
|
||||||
extraMeta.branch = "6.0";
|
extraMeta.branch = "6.0";
|
||||||
patchDir = repos.linux-surface + "/patches/${extraMeta.branch}";
|
patchDir = repos.linux-surface + "/patches/${extraMeta.branch}";
|
||||||
kernelPatches = pkgs.callPackage ./patches.nix {
|
kernelPatches = pkgs.callPackage ./patches.nix {
|
||||||
|
@ -20,17 +20,17 @@ let
|
||||||
inherit version extraMeta kernelPatches;
|
inherit version extraMeta kernelPatches;
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
|
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
|
||||||
sha256 = "sha256-K65hMeZJceHjT/OV+lQpcRNMhXvbCykGmrhHx8mpx2I=";
|
sha256 = "sha256-p+6SCSpUWbtGq/C1RJpOV+i3klkaxOesBO0lQtLOHQg=";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
in {
|
in {
|
||||||
options.microsoft-surface.kernelVersion = mkOption {
|
options.microsoft-surface.kernelVersion = mkOption {
|
||||||
type = types.enum [ "6.0.11" ];
|
type = types.enum [ "6.0.17" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf (cfg.kernelVersion == "6.0.11") {
|
config = mkIf (cfg.kernelVersion == "6.0.17") {
|
||||||
boot = {
|
boot = {
|
||||||
inherit kernelPackages;
|
inherit kernelPackages;
|
||||||
};
|
};
|
|
@ -111,8 +111,12 @@
|
||||||
name = "ms-surface/0009-cameras";
|
name = "ms-surface/0009-cameras";
|
||||||
patch = patchDir + "/0009-cameras.patch";
|
patch = patchDir + "/0009-cameras.patch";
|
||||||
}
|
}
|
||||||
# {
|
{
|
||||||
# name = "ms-surface/0010-amd-gpio";
|
name = "ms-surface/0010-amd-gpio";
|
||||||
# patch = patchDir + "/0010-amd-gpio.patch";
|
patch = patchDir + "/0010-amd-gpio.patch";
|
||||||
# }
|
}
|
||||||
|
{
|
||||||
|
name = "ms-surface/0011-rtc";
|
||||||
|
patch = patchDir + "/0011-rtc.patch";
|
||||||
|
}
|
||||||
]
|
]
|
Loading…
Reference in a new issue