mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 00:23:10 +00:00
[NTOS][SETUP] Add x64 SMP kernel and make SMP the default boot mode on x64
This commit is contained in:
parent
400af0cfc5
commit
b627352815
3 changed files with 13 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue