Build upon the limine Rust template and a working pipeline, display an orange background on load.

This commit is contained in:
csd4ni3l
2026-03-13 18:57:56 +01:00
parent 1da63e1d62
commit b80e6735cd
16 changed files with 736 additions and 21 deletions

25
kernel/Cargo.lock generated Normal file
View File

@@ -0,0 +1,25 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "bitflags"
version = "2.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
[[package]]
name = "limine"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af6d2ee42712e7bd2c787365cd1dab06ef59a61becbf87bec7b32b970bd2594b"
dependencies = [
"bitflags",
]
[[package]]
name = "limine-rust-template"
version = "0.1.0"
dependencies = [
"limine",
]