From 52009e13dd805bdda640d365c291b049237adaa8 Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Sun, 12 Jul 2009 10:37:38 +0000 Subject: [PATCH] Only call WinLDR for x86 since there is no NT for ARM svn path=/trunk/; revision=41910 --- reactos/boot/freeldr/freeldr/bootmgr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reactos/boot/freeldr/freeldr/bootmgr.c b/reactos/boot/freeldr/freeldr/bootmgr.c index 5bbfca862a0..ea860992c58 100644 --- a/reactos/boot/freeldr/freeldr/bootmgr.c +++ b/reactos/boot/freeldr/freeldr/bootmgr.c @@ -122,12 +122,14 @@ VOID RunLoader(VOID) // 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) {