Skip to content

Commit

Permalink
linux-hardened: 5.7 -> 5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
NeQuissimus committed Sep 28, 2020
1 parent 5b40fd3 commit 4712b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17929,7 +17929,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_7;
linux_latest_for_hardened = pkgs.linux_5_8;
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 {
Expand Down

4 comments on commit 4712b94

@vcunat
Copy link
Member

@vcunat vcunat commented on 4712b94 Oct 3, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This reproducibly broke a test and is blocking the nixos-20.09 channel. Any idea what's wrong?

@vcunat
Copy link
Member

@vcunat vcunat commented on 4712b94 Oct 5, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@NeQuissimus: I reverted it in ad3a5d5, as the channel has been stuck for too long now. Also ping @joachifm – the maintainer of this test. (I know that using 5.7 really isn't sustainable over longer term.)

@NeQuissimus
Copy link
Member Author

@NeQuissimus NeQuissimus commented on 4712b94 Oct 5, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vcunat @joachifm ugh, I figured it out... Linux 5.8 changes the option from hidepid=2 to hidepid=invisible when you grep for it... PR incoming

@NeQuissimus
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.