When doing a debug boot pass /NOGUIBOOT to disable the

splash screen so we can see the /DEBUGPORT=SCREEN
output.

svn path=/trunk/; revision=10413
This commit is contained in:
Steven Edwards
2004-08-07 20:26:41 +00:00
parent e0449489e5
commit 7fe2c42738
+4 -4
View File
@@ -248,12 +248,12 @@ CreateFreeLoaderIniForDos(PWCHAR IniPath,
L"SystemPath",
ArcPath);
/* Options=/DEBUGPORT=SCREEN */
/* Options=/DEBUGPORT=SCREEN /NOGUIBOOT */
IniCacheInsertKey(IniSection,
NULL,
INSERT_LAST,
L"Options",
L"/DEBUGPORT=SCREEN");
L"/DEBUGPORT=SCREEN /NOGUIBOOT");
/* Create "DOS" section */
IniSection = IniCacheAppendSection(IniCache,
@@ -359,12 +359,12 @@ CreateFreeLoaderIniForReactos(PWCHAR IniPath,
L"SystemPath",
ArcPath);
/* Options=/DEBUGPORT=SCREEN */
/* Options=/DEBUGPORT=SCREEN /NOGUIBOOT */
IniCacheInsertKey(IniSection,
NULL,
INSERT_LAST,
L"Options",
L"/DEBUGPORT=SCREEN");
L"/DEBUGPORT=SCREEN /NOGUIBOOT");
/* Save the ini file */
IniCacheSave(IniCache, IniPath);