Skip to content

Commit

Permalink
Disable intel mce
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRTitor committed Mar 5, 2024
1 parent 1e0ee2e commit 014597a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion system/boot-kernel.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@
patch = null; # no patch is needed, just apply the options
extraStructuredConfig = with lib.kernel; {
MNATIVE_AMD = lib.mkForce yes; # enable compiler optimizations for AMD
X86_EXTENDED_PLATFORM = lib.mkForce no; # support for other x86 platforms
X86_EXTENDED_PLATFORM = lib.mkForce no; # disable support for other x86 platforms
X86_USE_PPRO_CHECKSUM = lib.mkForce yes;

X86_MCE_INTEL = lib.mkForce no; # disable support for intel mce

# AMD SMEE
DYNAMIC_PHYSICAL_MASK = lib.mkForce yes;
X86_MEM_ENCRYPT = lib.mkForce yes;
Expand Down

0 comments on commit 014597a

Please sign in to comment.