Correct comments

This commit is contained in:
Rafal Kupiec 2023-01-02 18:06:54 +01:00
parent c5a7d0fe05
commit c91708034b
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
4 changed files with 4 additions and 4 deletions

View File

@ -36,6 +36,6 @@ endif()
set_target_properties(xtldr PROPERTIES OUTPUT_NAME ${BINARY_NAME} SUFFIX .efi)
set_install_target(xtldr efi/boot)
# Set loader entrypoint, imagebase address, ordinals and subsystem
# Set loader entrypoint and subsystem
set_entrypoint(xtldr "BlStartXtLoader")
set_subsystem(xtldr efi_application)

View File

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

View File

@ -22,6 +22,6 @@ target_link_libraries(pecoff libxtos)
set_target_properties(pecoff PROPERTIES SUFFIX .efi)
set_install_target(pecoff efi/boot/xtldr)
# Set loader entrypoint, imagebase address, ordinals and subsystem
# Set module entrypoint and subsystem
set_entrypoint(pecoff "BlXtLdrModuleMain")
set_subsystem(pecoff efi_boot_service_driver)

View File

@ -22,6 +22,6 @@ target_link_libraries(xtos libxtos)
set_target_properties(xtos PROPERTIES SUFFIX .efi)
set_install_target(xtos efi/boot/xtldr)
# Set loader entrypoint, imagebase address, ordinals and subsystem
# Set module entrypoint and subsystem
set_entrypoint(xtos "BlXtLdrModuleMain")
set_subsystem(xtos efi_boot_service_driver)