mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[SETUPLIB] Default to "ReactOS (Debug)" boot entry on debug builds, instead of "ReactOS".
This commit is contained in:
parent
4526848888
commit
c188821f8b
1 changed files with 6 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue