Author: ros-arm-bringup
Date: Sun Jul 12 14:37:38 2009
New Revision: 41910
URL: http://svn.reactos.org/svn/reactos?rev=41910&view=rev
Log:
Only call WinLDR for x86 since there is no NT for ARM
Modified:
trunk/reactos/boot/freeldr/freeldr/bootmgr.c
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] Sun Jul 12 14:37:38 2009
@@ -122,11 +122,13 @@
// to have different install methods, etc.
LoadReactOSSetup();
}
+#ifdef __i386__
else if (_stricmp(SettingValue, "ReactOSSetup2") == 0)
{
// WinLdr-style boot
LoadReactOSSetup2();
}
+#endif
#endif
#ifdef __i386__
else if (_stricmp(SettingValue, "WindowsNT40") == 0)