[CLT2012]

- Partly revert r53422 to allow hybrid CD booting again. Thanks to Giannis.

svn path=/branches/ros-branch-0_3_14-clt2012/; revision=56123
This commit is contained in:
Thomas Faber
2012-03-11 21:09:16 +00:00
parent 76a461dd16
commit 77b07c3a96
2 changed files with 10 additions and 4 deletions
+9 -3
View File
@@ -231,15 +231,20 @@ VOID RunLoader(VOID)
IniOpenSection("Operating Systems", &SectionId);
IniReadSettingByName(SectionId, SectionName, SettingValue, sizeof(SettingValue));
#ifndef _M_ARM
// Install the drive mapper according to this sections drive mappings
#if defined(_M_IX86) && !defined(_MSC_VER)
DriveMapMapDrivesInSection(SectionName);
#endif
#ifdef FREELDR_REACTOS_SETUP
// WinLdr-style boot
LoadReactOSSetup();
#elif defined(_M_IX86)
if (_stricmp(BootType, "ReactOSSetup") == 0)
{
LoadReactOSSetup();
}
else
#endif
#ifdef _M_IX86
if (_stricmp(BootType, "Windows") == 0)
{
LoadAndBootWindows(SectionName, SettingValue, 0);
@@ -268,6 +273,7 @@ VOID RunLoader(VOID)
{
LoadAndBootDrive(SectionName);
}
#endif
#else
LoadAndBootWindows(SectionName, SettingValue, _WIN32_WINNT_WS03);
#endif
+1 -1
View File
@@ -24,7 +24,7 @@ Install="ReactOS-Installation starten"
Live="ReactOS Live-System starten"
[Install]
BootType=ReactOSSetup2
BootType=ReactOSSetup
[Live]
BootType=Windows2003