[ros-diffs] [ros-arm-bringup] 41910: Only call WinLDR for x86 since there is no NT for ARM

ros-arm-bringup at svn.reactos.org ros-arm-bringup at svn.reactos.org
Sun Jul 12 12:37:38 CEST 2009


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/bootmgr.c?rev=41910&r1=41909&r2=41910&view=diff
==============================================================================
--- 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)



More information about the Ros-diffs mailing list