exectos/xtldr2
Rafal Kupiec cd1ab2128b
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 30s
Builds / ExectOS (i686) (push) Successful in 48s
Match new RTL API to fix build
2023-12-06 22:56:38 +01:00
..
includes Refactor, part 7; register XTLDR protocol 2023-12-05 22:18:25 +01:00
CMakeLists.txt Add XTLDR protocol support 2023-12-04 18:49:34 +01:00
config.c Match new RTL API to fix build 2023-12-06 22:56:38 +01:00
console.c Match new RTL API to fix build 2023-12-06 22:56:38 +01:00
debug.c Match new RTL API to fix build 2023-12-06 22:56:38 +01:00
efiutils.c Not really needed as each module will get both ImageHandle and SystemTable 2023-12-04 18:58:00 +01:00
globals.c Refactor part 6 2023-12-04 16:32:07 +01:00
hardware.c Refactor part 5; Implement debugging ports 2023-12-03 23:18:49 +01:00
memory.c Correct typo 2023-12-04 17:33:33 +01:00
protocol.c Not really needed as each module will get both ImageHandle and SystemTable 2023-12-04 18:58:00 +01:00
README.md Initial XTLDR import 2023-12-02 22:24:58 +01:00
string.c Refactor part 3 2023-12-03 16:44:01 +01:00
xtldr.c Refactor, part 7; register XTLDR protocol 2023-12-05 22:18:25 +01:00

XT Boot Manager (XTLDR)

The XTLDR, or XTOS Boot Loader, is an EFI (Extensible Firmware Interface) boot loader specifically designed for XTOS. As an EFI boot loader, XTLDR operates exclusively with EFI-based hardware and is not compatible with non-EFI systems, like old and deprecated BIOS.

One of the notable features of XTLDR is its modular design. The boot loader is divided into different modules, with only the essential core being loaded during the boot process. This modular approach allows for a more efficient and streamlined boot experience, as only the necessary functionality is loaded, reducing the boot time and system resource usage.

XTLDR includes various modules that provide specific functionalities required for the boot process. For example, there is a module dedicated to supporting the XTOS boot protocol, which is the specific protocol used by XTOS for loading and executing the OS kernel. Additionally, there is a module for handling PE/COFF (Portable Executable) binaries, which is a commonly used format of executable files used by the XTOS.