Rewrite core of the XTLDR boot loader
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 1m1s
Builds / ExectOS (i686) (push) Successful in 29s

Reviewed-on: #7
Reviewed-by: Piotr Likoski <likoski@noreply.codingworkshop.git>
Co-authored-by: Rafal Kupiec <belliash@codingworkshop.eu.org>
Co-committed-by: Rafal Kupiec <belliash@codingworkshop.eu.org>
This commit is contained in:
2024-01-09 18:51:04 +01:00
committed by CodingWorkshop Signing Team
parent 44905bb71d
commit 4412d4fc98
63 changed files with 6282 additions and 2371 deletions

View File

@@ -9,6 +9,10 @@ set(XTOS_COMPATIBLE_MINOR "3")
set(XTOS_COMPATIBLE_VERSION "0x0603")
set(XTOS_COMPATIBLE_BUILD "9600")
# Set XTLDR version
set(XTLDR_VERSION_MAJOR "0")
set(XTLDR_VERSION_MINOR "1")
# Set common XTOS version variables
string(TIMESTAMP XTOS_VERSION_YEAR %Y)
string(TIMESTAMP XTOS_VERSION_DATE "%Y%m%d")

View File

@@ -29,4 +29,7 @@
#define XTOS_COMPILER_NAME "@CMAKE_C_COMPILER_ID@"
#define XTOS_COMPILER_VERSION "@CMAKE_C_COMPILER_VERSION@"
#define XTLDR_VERSION_MAJOR @XTLDR_VERSION_MAJOR@
#define XTLDR_VERSION_MINOR @XTLDR_VERSION_MINOR@
#endif /* __XTGEN_XTVER_H */