1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

Merge pull request #103103 from NeQuissimus/hardened_59

linux-hardened: 5.8.x -> 5.9.x
This commit is contained in:
Tim Steinbach 2020-11-09 18:33:17 -05:00 committed by GitHub
commit 264f235e62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18367,7 +18367,7 @@ in
# Hardened Linux
hardenedLinuxPackagesFor = kernel': overrides:
let # Note: We use this hack since the hardened patches can lag behind and we don't want to delay updates:
linux_latest_for_hardened = pkgs.linux_5_8;
linux_latest_for_hardened = pkgs.linux_5_9;
kernel = (if kernel' == pkgs.linux_latest then linux_latest_for_hardened else kernel').override overrides;
in linuxPackagesFor (kernel.override {
structuredExtraConfig = import ../os-specific/linux/kernel/hardened/config.nix {