enable winldr style boot

svn path=/branches/ros-amd64-bringup/; revision=43574
This commit is contained in:
Timo Kreuzer 2009-10-18 18:54:40 +00:00
parent 5fb8f749c4
commit 9e1db2627d
2 changed files with 10 additions and 7 deletions

View file

@ -143,13 +143,11 @@ VOID RunLoader(VOID)
// to have different install methods, etc. // to have different install methods, etc.
LoadReactOSSetup(); LoadReactOSSetup();
} }
#ifdef __i386__ #if defined(__i386__) || defined(__x86_64__)
else if (_stricmp(SettingValue, "ReactOSSetup2") == 0) else if (_stricmp(SettingValue, "ReactOSSetup2") == 0)
{ {
#ifdef __i386__
// WinLdr-style boot // WinLdr-style boot
LoadReactOSSetup2(); LoadReactOSSetup2();
#endif
} }
#endif #endif
#endif #endif

View file

@ -24,4 +24,9 @@
<file>setupldr2.c</file> <file>setupldr2.c</file>
</directory> </directory>
</if> </if>
<if property="ARCH" value="amd64">
<directory name="windows">
<file>setupldr2.c</file>
</directory>
</if>
</module> </module>