Rename module entry point
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Rafal Kupiec 2022-10-19 14:55:31 +02:00
parent 984b4b83a1
commit 6c576f95c4
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 3 additions and 3 deletions

View File

@ -22,5 +22,5 @@ set_target_properties(dummy PROPERTIES SUFFIX .efi)
set_install_target(dummy efi/boot/xtldr) set_install_target(dummy efi/boot/xtldr)
# Set loader entrypoint, imagebase address, ordinals and subsystem # Set loader entrypoint, imagebase address, ordinals and subsystem
set_entrypoint(dummy "BlXtLoaderModuleMain") set_entrypoint(dummy "BlXtLdrModuleMain")
set_subsystem(dummy efi_boot_service_driver) set_subsystem(dummy efi_boot_service_driver)

View File

@ -33,8 +33,8 @@ PXT_BOOT_LOADER_PROTOCOL EfiXtLdrProtocol;
* @since XT 1.0 * @since XT 1.0
*/ */
EFI_STATUS EFI_STATUS
BlXtLoaderModuleMain(EFI_HANDLE ImageHandle, BlXtLdrModuleMain(EFI_HANDLE ImageHandle,
PEFI_SYSTEM_TABLE SystemTable) PEFI_SYSTEM_TABLE SystemTable)
{ {
EFI_STATUS Status; EFI_STATUS Status;