https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6778fa157f095fa373a7f4b97203251bedd9837f
commit 6778fa157f095fa373a7f4b97203251bedd9837f Author: Timo Kreuzer <[email protected]> AuthorDate: Sun Jul 17 19:31:38 2022 +0200 Commit: Timo Kreuzer <[email protected]> CommitDate: Wed Jul 20 23:57:42 2022 +0200 [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. --- base/setup/lib/settings.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/base/setup/lib/settings.c b/base/setup/lib/settings.c index d392511dd2e..aece0e5e8d9 100644 --- a/base/setup/lib/settings.c +++ b/base/setup/lib/settings.c @@ -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()) {
