Author: sserapion
Date: Mon May 31 02:38:45 2010
New Revision: 47475
URL:
http://svn.reactos.org/svn/reactos?rev=47475&view=rev
Log:
Fix freeldr build.
Modified:
branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/bootmgr.c
branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/freeldr.c
Modified: branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/bootmgr.c
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/boot/…
==============================================================================
--- branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/bootmgr.c [iso-8859-1]
(original)
+++ branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/bootmgr.c [iso-8859-1] Mon May
31 02:38:45 2010
@@ -118,13 +118,13 @@
UiMessageBoxCritical("Error when detecting hardware");
return;
}
-
+#ifdef _M_IX86 //BUG: function in x86 specific file
// Load additional SCSI driver (if any)
if (LoadBootDeviceDriver() != ESUCCESS)
{
UiMessageBoxCritical("Unable to load additional boot device driver");
}
-
+#endif
if (!IniFileInitialize())
{
UiMessageBoxCritical("Error initializing .ini file");
Modified: branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/freeldr.c
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/boot/…
==============================================================================
--- branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/freeldr.c [iso-8859-1]
(original)
+++ branches/ros-amd64-bringup/reactos/boot/freeldr/freeldr/freeldr.c [iso-8859-1] Mon May
31 02:38:45 2010
@@ -47,7 +47,9 @@
return;
}
+#ifdef _M_IX86
HalpInitializePciStubs();
HalpInitBusHandler();
+#endif
RunLoader();
}