Enable linker map for XTLDR and its modules
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 27s
Builds / ExectOS (i686) (push) Successful in 45s

This commit is contained in:
Rafal Kupiec 2024-01-02 14:41:38 +01:00
parent 64b23a3e7d
commit c0f99cc798
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 3 additions and 1 deletions

View File

@ -43,6 +43,7 @@ set_target_properties(xtldr PROPERTIES OUTPUT_NAME ${BINARY_NAME} SUFFIX .efi)
set_install_target(xtldr efi/boot) set_install_target(xtldr efi/boot)
# Set loader entrypoint and subsystem # Set loader entrypoint and subsystem
set_imagebase(xtldr ${BASEADDRESS_XTLDR})
set_entrypoint(xtldr "BlStartXtLoader") set_entrypoint(xtldr "BlStartXtLoader")
set_imagebase(xtldr ${BASEADDRESS_XTLDR})
set_linker_map(xtldr TRUE)
set_subsystem(xtldr efi_application) set_subsystem(xtldr efi_application)

View File

@ -23,4 +23,5 @@ set_install_target(dummy efi/boot/xtldr/modules)
# Set module entrypoint and subsystem # Set module entrypoint and subsystem
set_entrypoint(dummy "XtLdrModuleMain") set_entrypoint(dummy "XtLdrModuleMain")
set_linker_map(dummy TRUE)
set_subsystem(dummy efi_boot_service_driver) set_subsystem(dummy efi_boot_service_driver)