Author: cwittich
Date: Tue Jan 20 09:02:04 2009
New Revision: 38975
URL:
http://svn.reactos.org/svn/reactos?rev=38975&view=rev
Log:
revert 38962 as it breaks bootcd
Modified:
trunk/reactos/boot/freeldr/freeldr/bootmgr.c
trunk/reactos/boot/freeldr/freeldr/freeldr_base.rbuild
trunk/reactos/boot/freeldr/freeldr/freeldr_main.rbuild
trunk/reactos/boot/freeldr/freeldr/include/freeldr.h
trunk/reactos/boot/freeldr/freeldr/reactos/setupldr.c
trunk/reactos/boot/freeldr/freeldr/setupldr_main.rbuild
Modified: trunk/reactos/boot/freeldr/freeldr/bootmgr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/bootm…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/bootmgr.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/bootmgr.c [iso-8859-1] Tue Jan 20 09:02:04 2009
@@ -115,14 +115,6 @@
{
LoadAndBootReactOS(OperatingSystemSectionNames[SelectedOperatingSystem]);
}
-#ifdef FREELDR_ROS_SETUP
- else if (_stricmp(SettingValue, "ReactOSSetup") == 0)
- {
- // Could probably pass the selection across at a later date
- // which might be useful for different install methods?
- RunReactOSSetup();
- }
-#endif
#ifdef __i386__
else if (_stricmp(SettingValue, "WindowsNT40") == 0)
{
Modified: trunk/reactos/boot/freeldr/freeldr/freeldr_base.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/freel…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/freeldr_base.rbuild [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/freeldr_base.rbuild [iso-8859-1] Tue Jan 20
09:02:04 2009
@@ -77,12 +77,6 @@
<file>version.c</file>
<file>cmdline.c</file>
<file>machine.c</file>
- <file>drivemap.c</file>
- <file>miscboot.c</file>
- <file>options.c</file>
- <file>linuxboot.c</file>
- <file>oslist.c</file>
- <file>custom.c</file>
<directory name="include">
<pch>freeldr.h</pch>
</directory>
Modified: trunk/reactos/boot/freeldr/freeldr/freeldr_main.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/freel…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/freeldr_main.rbuild [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/freeldr_main.rbuild [iso-8859-1] Tue Jan 20
09:02:04 2009
@@ -7,4 +7,10 @@
<compilerflag>-fno-inline</compilerflag>
<compilerflag>-fno-zero-initialized-in-bss</compilerflag>
<file>bootmgr.c</file>
+ <file>drivemap.c</file>
+ <file>miscboot.c</file>
+ <file>options.c</file>
+ <file>linuxboot.c</file>
+ <file>oslist.c</file>
+ <file>custom.c</file>
</module>
Modified: trunk/reactos/boot/freeldr/freeldr/include/freeldr.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/inclu…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/include/freeldr.h [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/include/freeldr.h [iso-8859-1] Tue Jan 20 09:02:04
2009
@@ -107,6 +107,5 @@
VOID BootMain(LPSTR CmdLine);
VOID RunLoader(VOID);
-VOID RunReactOSSetup(VOID);
#endif // defined __FREELDR_H
Modified: trunk/reactos/boot/freeldr/freeldr/reactos/setupldr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/react…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/reactos/setupldr.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/reactos/setupldr.c [iso-8859-1] Tue Jan 20 09:02:04
2009
@@ -42,7 +42,7 @@
#define USE_UI
-VOID RunReactOSSetup(VOID)
+VOID RunLoader(VOID)
{
ULONG i;
LPCSTR SourcePath;
Modified: trunk/reactos/boot/freeldr/freeldr/setupldr_main.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/setup…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/setupldr_main.rbuild [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/setupldr_main.rbuild [iso-8859-1] Tue Jan 20
09:02:04 2009
@@ -4,15 +4,11 @@
<include base="setupldr_main">include</include>
<include base="ntoskrnl">include</include>
<define name="_NTHAL_" />
- <define name="FREELDR_ROS_SETUP" />
<compilerflag>-ffreestanding</compilerflag>
<compilerflag>-fno-builtin</compilerflag>
<compilerflag>-fno-inline</compilerflag>
<compilerflag>-fno-zero-initialized-in-bss</compilerflag>
<compilerflag>-Os</compilerflag>
-
- <file>bootmgr.c</file>
-
<directory name="inffile">
<file>inffile.c</file>
</directory>