mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[SETUP] Don't default to MP builds, when KDBG is enabled
The reason is that KDBG and the MP kernel don't like each other much and crash hard, causing VBox to shut down.
This commit is contained in:
parent
31a5fa61bb
commit
6778fa157f
1 changed files with 5 additions and 1 deletions
|
@ -274,8 +274,12 @@ GetComputerIdentifier(
|
|||
}
|
||||
|
||||
#ifdef _M_AMD64
|
||||
/* On x64 we are l33t and use the MP config by default */
|
||||
/* On x64 we are l33t and use the MP config by default (except when we use KDBG, which is broken) */
|
||||
#ifndef KDBG
|
||||
ComputerIdentifier = L"X64 MP";
|
||||
#else
|
||||
ComputerIdentifier = L"X64 UP";
|
||||
#endif
|
||||
#else
|
||||
if (IsAcpiComputer())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue