Move XTLDR under boot directory

This commit is contained in:
2025-10-06 12:08:36 +02:00
父節點 ce8041754b
當前提交 c5f522be4c
共有 53 個文件被更改,包括 2 次插入2 次删除

查看文件

@@ -66,5 +66,4 @@ set_disk_image_size(48)
add_subdirectory(boot)
add_subdirectory(drivers)
add_subdirectory(sdk)
add_subdirectory(xtldr)
add_subdirectory(xtoskrnl)

查看文件

@@ -61,6 +61,7 @@ design, it requires a modern EFI enabled hardware. It is not possible currently
|------------------|--------------------------------------------------------------|
| boot/bootdata | default configuration and data needed to boot XTOS |
| boot/bootsect | boot sector code (MBR & VBR) initializing the boot process |
| boot/xtldr | XTOS boot loader source code |
| drivers | XT native drivers source code |
| sdk/cmake | host toolchain configuration and build-related functions |
| sdk/firmware | firmware enabling XTOS to boot on virtual machines |
@@ -68,7 +69,6 @@ design, it requires a modern EFI enabled hardware. It is not possible currently
| services | integral subsystems services source code |
| subsystems | environment subsystems source code |
| xtoskrnl | XTOS kernel source code |
| xtldr | XTOS boot loader source code |
# Build
XTOS can only be built using [XTchain](https://git.codingworkshop.eu.org/xt-sys/xtchain), a dedicated toolchain designed

查看文件

@@ -1,2 +1,3 @@
add_subdirectory(bootdata)
add_subdirectory(bootsect)
add_subdirectory(xtldr)