exectos/xtldr
Rafal Kupiec 6accf62552
Builds / ExectOS (i686) (push) Successful in 33s Details
Builds / ExectOS (amd64) (push) Successful in 34s Details
Expose BlGetConfigBooleanValue() via XTLDR protocol
2024-03-18 22:16:20 +01:00
..
arch Code formatting 2024-02-16 22:44:19 +01:00
includes Implement BlGetConfigBooleanValue() routine 2024-03-18 20:02:43 +01:00
library Rewrite core of the XTLDR boot loader 2024-01-09 18:51:04 +01:00
modules XTOS boot protocol should use builtin mapping function 2024-03-17 23:10:50 +01:00
CMakeLists.txt Use new string formatting mechanism in the boot loader 2024-02-15 23:32:23 +01:00
README.md Rewrite core of the XTLDR boot loader 2024-01-09 18:51:04 +01:00
config.c Implement BlGetConfigBooleanValue() routine 2024-03-18 20:02:43 +01:00
console.c XTLDR console/debug print refactor 2024-02-16 15:09:18 +01:00
debug.c Use uppercase when printing status codes 2024-02-16 22:03:00 +01:00
efiutils.c Implement BlGetEfiVariable() and BlSetEfiVariable() routines 2024-03-18 17:04:58 +01:00
globals.c Cleanup after switching to new way of printing formatted strings 2024-02-16 22:04:17 +01:00
hardware.c Unify variable types across project; use common type for storing numer of pages 2024-01-29 16:17:51 +01:00
memory.c Allow boot protocols to supply own routine for converting EFI memory type into OS-specific memory type 2024-03-17 23:06:37 +01:00
protocol.c Expose BlGetConfigBooleanValue() via XTLDR protocol 2024-03-18 22:16:20 +01:00
shell.c Rewrite core of the XTLDR boot loader 2024-01-09 18:51:04 +01:00
textui.c Store last booted OS in NVRAM and make it default one on next boot 2024-03-18 19:41:55 +01:00
volume.c Correct typo in a comment 2024-03-02 22:27:32 +01:00
xtldr.c Remove unnecessary debug messages 2024-03-18 21:55:17 +01:00

README.md

XT Boot Loader (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.