mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 14:34:57 +08:00
[SETUPLIB] Default to "ReactOS (Debug)" boot entry on debug builds, instead of "ReactOS".
This commit is contained in:
@@ -126,21 +126,20 @@ CreateFreeLoaderReactOSEntries(
|
||||
#endif
|
||||
|
||||
|
||||
#if DBG
|
||||
/* DefaultOS=ReactOS */
|
||||
#if DBG && !defined(_WINKD_)
|
||||
if (IsUnattendedSetup)
|
||||
{
|
||||
/* DefaultOS=ReactOS */
|
||||
#ifndef _WINKD_
|
||||
BootOptions.CurrentBootEntryKey = MAKESTRKEY(L"ReactOS_KdSerial");
|
||||
#else
|
||||
BootOptions.CurrentBootEntryKey = MAKESTRKEY(L"ReactOS_Debug");
|
||||
#endif
|
||||
}
|
||||
else
|
||||
#endif
|
||||
{
|
||||
/* DefaultOS=ReactOS */
|
||||
#if DBG
|
||||
BootOptions.CurrentBootEntryKey = MAKESTRKEY(L"ReactOS_Debug");
|
||||
#else
|
||||
BootOptions.CurrentBootEntryKey = MAKESTRKEY(L"ReactOS");
|
||||
#endif
|
||||
}
|
||||
|
||||
#if DBG
|
||||
|
||||
Reference in New Issue
Block a user