mirror of
https://github.com/reactos/reactos.git
synced 2025-04-25 08:00:24 +00:00
revert 38962 as it breaks bootcd
svn path=/trunk/; revision=38975
This commit is contained in:
parent
077971b02b
commit
1ff1fb9564
6 changed files with 7 additions and 20 deletions
|
@ -115,14 +115,6 @@ VOID RunLoader(VOID)
|
|||
{
|
||||
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)
|
||||
{
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -107,6 +107,5 @@
|
|||
|
||||
VOID BootMain(LPSTR CmdLine);
|
||||
VOID RunLoader(VOID);
|
||||
VOID RunReactOSSetup(VOID);
|
||||
|
||||
#endif // defined __FREELDR_H
|
||||
|
|
|
@ -42,7 +42,7 @@ extern BOOLEAN FrLdrLoadNlsFile(PCSTR szFileName, PCSTR szModuleName);
|
|||
|
||||
#define USE_UI
|
||||
|
||||
VOID RunReactOSSetup(VOID)
|
||||
VOID RunLoader(VOID)
|
||||
{
|
||||
ULONG i;
|
||||
LPCSTR SourcePath;
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue