[ros-diffs] [tkreuzer] 52207: [FREELDR] Fix entry point

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Mon Jun 13 09:23:11 UTC 2011


Author: tkreuzer
Date: Mon Jun 13 09:23:11 2011
New Revision: 52207

URL: http://svn.reactos.org/svn/reactos?rev=52207&view=rev
Log:
[FREELDR]
Fix entry point

Modified:
    trunk/reactos/boot/freeldr/freeldr/CMakeLists.txt
    trunk/reactos/boot/freeldr/freeldr/arch/i386/arch.S

Modified: trunk/reactos/boot/freeldr/freeldr/CMakeLists.txt
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/CMakeLists.txt?rev=52207&r1=52206&r2=52207&view=diff
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/CMakeLists.txt [iso-8859-1] Mon Jun 13 09:23:11 2011
@@ -202,7 +202,7 @@
 
 set_subsystem(freeldr_pe native)
 set_image_base(freeldr_pe 0x9000)
-set_entrypoint(freeldr_pe mainCRTStartup)
+set_entrypoint(freeldr_pe RealEntryPoint)
 
 if(ARCH MATCHES i386)
     target_link_libraries(freeldr_pe mini_hal)
@@ -257,7 +257,7 @@
 
 set_subsystem(setupldr_pe native)
 set_image_base(setupldr_pe 0x9000)
-set_entrypoint(setupldr_pe mainCRTStartup)
+set_entrypoint(setupldr_pe RealEntryPoint)
 
 if(ARCH MATCHES i386)
     target_link_libraries(setupldr_pe mini_hal)

Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/arch.S
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/i386/arch.S?rev=52207&r1=52206&r2=52207&view=diff
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/arch/i386/arch.S [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/arch/i386/arch.S [iso-8859-1] Mon Jun 13 09:23:11 2011
@@ -25,7 +25,7 @@
 
 	.code16
 
-EXTERN(RealEntryPoint)
+EXTERN(_RealEntryPoint)
 
 	cli
 




More information about the Ros-diffs mailing list