Skip to content

Commit

Permalink
surface: linux 6.5.7 -> 6.5.11
Browse files Browse the repository at this point in the history
  • Loading branch information
stigtsp authored and mergify[bot] committed Nov 14, 2023
1 parent 8bb2d5c commit df9bb8a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion microsoft/surface/common/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ in {
./surface-control
];

microsoft-surface.kernelVersion = mkDefault "6.5.7";
microsoft-surface.kernelVersion = mkDefault "6.5.11";

# Seems to be required to properly enable S0ix "Modern Standby":
boot.kernelParams = mkDefault [ "mem_sleep_default=deep" ];
Expand Down
2 changes: 1 addition & 1 deletion microsoft/surface/common/kernel/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ let

in {
imports = [
./linux-6.5.7
./linux-6.1.x
./linux-6.5.x
];

options.microsoft-surface.kernelVersion = mkOption {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let

cfg = config.microsoft-surface;

version = "6.5.7";
version = "6.5.11";
extraMeta.branch = "6.5";
patchDir = repos.linux-surface + "/patches/${extraMeta.branch}";
kernelPatches = pkgs.callPackage ./patches.nix {
Expand All @@ -20,17 +20,17 @@ let
inherit version extraMeta kernelPatches;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
sha256 = "135v3y2vgc83dca4xi7q52wqi4dkfal74k1y73jwzj85h12fl28d";
sha256 = "sha256-LuJK+SgrgJI7LaVrcKrX3y6O5OPwdkUuBbpmviBZtRk=";
};
};


in {
options.microsoft-surface.kernelVersion = mkOption {
type = types.enum [ "6.5.7" ];
type = types.enum [ version ];
};

config = mkIf (cfg.kernelVersion == "6.5.7") {
config = mkIf (cfg.kernelVersion == version) {
boot = {
inherit kernelPackages;
};
Expand Down

0 comments on commit df9bb8a

Please sign in to comment.