Use the newly refactored code
This commit is contained in:
parent
158f86bb32
commit
3de7b6e0c5
|
@ -6,7 +6,7 @@
|
|||
}:
|
||||
|
||||
# To test the kernel build:
|
||||
# nix-build -E "with import <nixpkgs> {}; (pkgs.callPackage ./. {}).kernel"
|
||||
# nix-build -E "with import <nixpkgs> {}; (pkgs.callPackage ./. {}).boot.kernelPackages.kernel"
|
||||
|
||||
let
|
||||
inherit (lib) kernel recurseIntoAttrs;
|
||||
|
|
|
@ -1,24 +1,24 @@
|
|||
{ lib, callPackage, linuxPackagesFor, ... }:
|
||||
# To test the kernel build:
|
||||
# nix-build -E "with import <nixpkgs> {}; (pkgs.callPackage ./linux-5.16.11.nix {}).kernel"
|
||||
let
|
||||
repos = callPackage ../repos.nix {};
|
||||
linuxPkg = { fetchurl, buildLinux, ... }@args:
|
||||
buildLinux (args // rec {
|
||||
version = "5.16.11";
|
||||
modDirVersion = version;
|
||||
extraMeta.branch = "5.16";
|
||||
{ lib,
|
||||
repos,
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (lib) kernel;
|
||||
version = "5.16.11";
|
||||
|
||||
in {
|
||||
inherit version;
|
||||
modDirVersion = version;
|
||||
branch = "5.16";
|
||||
src = repos.linux-surface-kernel {
|
||||
# Kernel 5.16.11
|
||||
# Kernel 5.16.11 from the linux-surface/kernel repo:
|
||||
rev = "db94c89f56d6ceae03ca3802e11197f48e6c539f";
|
||||
sha256 = "0c58ri0i9gdb4w7l361pnkvq6ap17kmgnxngh0bcdmgn4dc88wx2";
|
||||
};
|
||||
|
||||
kernelPatches = [{
|
||||
name = "microsoft-surface-patches-linux-5.16.2";
|
||||
name = "microsoft-surface-patches-linux-${version}";
|
||||
patch = null;
|
||||
structuredExtraConfig = with lib.kernel; {
|
||||
structuredExtraConfig = with kernel; {
|
||||
#
|
||||
# Surface Aggregator Module
|
||||
#
|
||||
|
@ -87,5 +87,5 @@ let
|
|||
SURFACE_BOOK1_DGPU_SWITCH = module;
|
||||
};
|
||||
}];
|
||||
} // (args.argsOverride or {}));
|
||||
in lib.recurseIntoAttrs (linuxPackagesFor (callPackage linuxPkg {}))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue