Author: tkreuzer Date: Sat Jan 22 09:47:20 2011 New Revision: 50459
URL: http://svn.reactos.org/svn/reactos?rev=50459&view=rev Log: [FREELDR] compile headless support only for x86
Modified: trunk/reactos/boot/freeldr/freeldr/windows/winldr.c
Modified: trunk/reactos/boot/freeldr/freeldr/windows/winldr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/window... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/windows/winldr.c [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/windows/winldr.c [iso-8859-1] Sat Jan 22 09:47:20 2011 @@ -155,7 +155,7 @@ ArcDiskInfo->ArcName = (PCHAR)PaToVa(ArcDiskInfo->ArcName);
/* Mark partition table as valid */ - ArcDiskInfo->ValidPartitionTable = TRUE; + ArcDiskInfo->ValidPartitionTable = TRUE;
/* Insert into the list */ InsertTailList(&LoaderBlock->ArcDiskInformation->DiskSignatureListHead, @@ -203,8 +203,8 @@ /* See KiRosFrldrLpbToNtLpb for details */ Extension->AcpiTable = (PVOID)1; } - -#ifndef _M_ARM + +#ifdef _M_IX86 /* Set headless block pointer */ extern HEADLESS_LOADER_BLOCK LoaderRedirectionInformation; extern BOOLEAN WinLdrTerminalConnected; @@ -534,8 +534,8 @@
/* Allocate and minimalistic-initialize LPB */ AllocateAndInitLPB(&LoaderBlock); - -#ifndef _M_ARM + +#ifdef _M_IX86 /* Setup redirection support */ extern void WinLdrSetupEms(IN PCHAR BootOptions); WinLdrSetupEms(BootOptions);