mirror of
https://github.com/reactos/reactos.git
synced 2025-04-28 01:11:35 +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
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if DBG
|
/* DefaultOS=ReactOS */
|
||||||
|
#if DBG && !defined(_WINKD_)
|
||||||
if (IsUnattendedSetup)
|
if (IsUnattendedSetup)
|
||||||
{
|
{
|
||||||
/* DefaultOS=ReactOS */
|
|
||||||
#ifndef _WINKD_
|
|
||||||
BootOptions.CurrentBootEntryKey = MAKESTRKEY(L"ReactOS_KdSerial");
|
BootOptions.CurrentBootEntryKey = MAKESTRKEY(L"ReactOS_KdSerial");
|
||||||
#else
|
|
||||||
BootOptions.CurrentBootEntryKey = MAKESTRKEY(L"ReactOS_Debug");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
/* DefaultOS=ReactOS */
|
#if DBG
|
||||||
|
BootOptions.CurrentBootEntryKey = MAKESTRKEY(L"ReactOS_Debug");
|
||||||
|
#else
|
||||||
BootOptions.CurrentBootEntryKey = MAKESTRKEY(L"ReactOS");
|
BootOptions.CurrentBootEntryKey = MAKESTRKEY(L"ReactOS");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#if DBG
|
#if DBG
|
||||||
|
|
Loading…
Reference in a new issue