Better virtual file system, keyboard through MMIO&VirtIO

This commit is contained in:
2026-03-05 14:41:28 +01:00
parent 041e544330
commit 9b6aec28f5
37 changed files with 1191 additions and 355 deletions

View File

@@ -6,3 +6,4 @@ edition = "2024"
[dependencies]
os-std-macros = { path = "../os-std-macros" }
shared = { path = "../shared", features = ["user"] }
io = { path = "../io", features = ["alloc"] }

1
crates/os-std/src/io.rs Normal file
View File

@@ -0,0 +1 @@
pub use io::SeekFrom;

View File

@@ -2,6 +2,7 @@
extern crate alloc;
pub mod io;
pub mod prelude;
pub use shared::fs;