Author: hbelusca
Date: Sun Mar 5 17:01:37 2017
New Revision: 74081
URL:
http://svn.reactos.org/svn/reactos?rev=74081&view=rev
Log:
[BOOTDATA][FREELDR]
- By default, boot the livecd without the kernel debugger enabled, but...
- ... augment the FreeLdr "Debugging Mode" option with serial+screen debug
ports, so that, if someone wants to run ReactOS with the kernel debugger on real hardware,
without serial port, (s)he still can do it and see the debug output.
I do that, until FreeLdr can support run-time editing boot options of existing boot menu
entries.
Modified:
branches/ReactOS-0.4.4-CLT2017/reactos/boot/freeldr/freeldr/options.c
Modified: branches/ReactOS-0.4.4-CLT2017/reactos/boot/freeldr/freeldr/options.c
URL:
http://svn.reactos.org/svn/reactos/branches/ReactOS-0.4.4-CLT2017/reactos/b…
==============================================================================
--- branches/ReactOS-0.4.4-CLT2017/reactos/boot/freeldr/freeldr/options.c [iso-8859-1]
(original)
+++ branches/ReactOS-0.4.4-CLT2017/reactos/boot/freeldr/freeldr/options.c [iso-8859-1] Sun
Mar 5 17:01:37 2017
@@ -277,5 +277,9 @@
strcat(BootOptions, " /BASEVIDEO");
if (DebuggingMode)
+#if 0
strcat(BootOptions, " /DEBUG");
+#else
+ strcat(BootOptions, " /DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200
/DEBUGPORT=SCREEN /SOS");
+#endif
}