Simple FAT16/32 driver implementation

This commit is contained in:
Ebu
2026-03-22 10:58:47 +01:00
commit 93d9cf0ae1
15 changed files with 1508 additions and 0 deletions

12
Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "efi-loader"
version = "0.1.0"
edition = "2024"
[dependencies]
bitflags = "2.11.0"
log = "0.4.29"
uefi = { version = "0.36.1", features = ["logger", "panic_handler", "log-debugcon", "alloc", "global_allocator"] }
zerocopy = { version = "0.8.47", features = ["derive"] }
[workspace]