Skip to content

Commit

Permalink
Update default intel BIOS (#64)
Browse files Browse the repository at this point in the history
Some of these BIOS settings are tricky, where `0` means "enabled" and
`1` means "disabled".

Explicitly disable IPV6 boots for my own convenience.
  • Loading branch information
rustydb authored Jun 18, 2024
1 parent 7ceb0c9 commit 6417ce9
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions configs/intel.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
---
ProcessorHyperThreadingDisable: 0
ProcessorPowerPolicy: 0
ProcessorVmxEnable: 1
ProcessorX2apic: 1
SRIOVEnable: 1
SvrMngmntAcpiIpmi: 1
UEFINetworkStack: 0
VTdSupport: 1
ProcessorVmxEnable: 1 # 1=enabled
ProcessorX2apic: 1 # 1=enabled
SRIOVEnable: 1 # 1=enabled
SvrMngmntAcpiIpmi: 1 # 1=enabled
UEFINetworkStack: 0 # 0=enabled
IPv4PXESupport: 0 # 0=enabled
IPv6PXESupport: 1 # 1=disabled
VTdSupport: 1 # 1=enabled

0 comments on commit 6417ce9

Please sign in to comment.