Do not use EntryPoint library for EfiLdr module.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5178 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2008-05-08 02:23:39 +00:00
parent df166ce574
commit c51b1cb6a4
2 changed files with 11 additions and 2 deletions

View File

@ -25,7 +25,6 @@
VERSION_STRING = 1.0
EDK_RELEASE_VERSION = 0x00020000
EFI_SPECIFICATION_VERSION = 0x00020000
ENTRY_POINT = EfiLoader
[Packages]
MdePkg/MdePkg.dec
@ -36,7 +35,6 @@
[LibraryClasses]
BaseLib
BaseMemoryLib
UefiApplicationEntryPoint
PrintLib
[Sources.common]

View File

@ -311,3 +311,14 @@ PrintHeader ('F');
SystemHang();
}
EFI_STATUS
EFIAPI
_ModuleEntryPoint (
UINT32 BiosMemoryMapBaseAddress
)
{
EfiLoader(BiosMemoryMapBaseAddress);
return EFI_SUCCESS;
}