mirror of
https://github.com/reactos/reactos.git
synced 2025-03-01 03:45:16 +00:00
** TESTS ONLY (not WINDBG) ** Redirect bsod screens also to the console, by using EMS
This commit is contained in:
parent
50e626841f
commit
00598658e1
1 changed files with 5 additions and 1 deletions
|
@ -81,7 +81,11 @@ CreateFreeLoaderReactOSEntries(
|
||||||
/* ReactOS_Debug */
|
/* ReactOS_Debug */
|
||||||
// BootEntry->BootEntryKey = MAKESTRKEY(L"ReactOS_Debug");
|
// BootEntry->BootEntryKey = MAKESTRKEY(L"ReactOS_Debug");
|
||||||
BootEntry->FriendlyName = L"\"ReactOS (Debug)\"";
|
BootEntry->FriendlyName = L"\"ReactOS (Debug)\"";
|
||||||
|
#ifndef _WINKD_
|
||||||
Options->OsLoadOptions = L"/DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200 /SOS";
|
Options->OsLoadOptions = L"/DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200 /SOS";
|
||||||
|
#else
|
||||||
|
Options->OsLoadOptions = L"/DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200 /SOS /redirect=com1 /redirectbaudrate=115200";
|
||||||
|
#endif
|
||||||
AddBootStoreEntry(BootStoreHandle, BootEntry, MAKESTRKEY(L"ReactOS_Debug"));
|
AddBootStoreEntry(BootStoreHandle, BootEntry, MAKESTRKEY(L"ReactOS_Debug"));
|
||||||
|
|
||||||
#ifdef _WINKD_
|
#ifdef _WINKD_
|
||||||
|
@ -96,7 +100,7 @@ CreateFreeLoaderReactOSEntries(
|
||||||
/* ReactOS_KdSerial */
|
/* ReactOS_KdSerial */
|
||||||
// BootEntry->BootEntryKey = MAKESTRKEY(L"ReactOS_KdSerial");
|
// BootEntry->BootEntryKey = MAKESTRKEY(L"ReactOS_KdSerial");
|
||||||
BootEntry->FriendlyName = L"\"ReactOS (RosDbg)\"";
|
BootEntry->FriendlyName = L"\"ReactOS (RosDbg)\"";
|
||||||
Options->OsLoadOptions = L"/DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200 /SOS /KDSERIAL";
|
Options->OsLoadOptions = L"/DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200 /SOS /KDSERIAL /redirect=com1 /redirectbaudrate=115200";
|
||||||
AddBootStoreEntry(BootStoreHandle, BootEntry, MAKESTRKEY(L"ReactOS_KdSerial"));
|
AddBootStoreEntry(BootStoreHandle, BootEntry, MAKESTRKEY(L"ReactOS_KdSerial"));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue