[NTOS][SETUP] Add x64 SMP kernel and make SMP the default boot mode on x64

This commit is contained in:
Timo Kreuzer 2021-06-12 14:25:48 +02:00
parent 400af0cfc5
commit b627352815
3 changed files with 13 additions and 2 deletions

View file

@ -273,6 +273,10 @@ GetComputerIdentifier(
return FALSE;
}
#ifdef _M_AMD64
/* On x64 we are l33t and use the MP config by default */
ComputerIdentifier = L"X64 MP";
#else
if (IsAcpiComputer())
{
if (pFullInfo->SubKeys == 1)
@ -299,6 +303,7 @@ GetComputerIdentifier(
ComputerIdentifier = L"PC MP";
}
}
#endif
RtlFreeHeap(RtlGetProcessHeap(), 0, pFullInfo);