Skip to content
Snippets Groups Projects
Verified Commit 92f8f817 authored by pigeonmoelleux's avatar pigeonmoelleux 💬
Browse files

feat: preparation for the FS

parent afa77d29
No related branches found
No related tags found
1 merge request!5Draft: Resolve "Implement ext2 support"
Pipeline #12843 failed with stages
in 45 seconds
//! Everything related to the File System (fs)
//!
//! Contains modules for the Virtual File System (vfs) and an ext2 implementations
pub mod node;
//! Interface for files, directories and symbolic links
//!
//! The general structure of the file systems is the Node Graph in Unix style.
......@@ -7,7 +7,8 @@ use conquer_once::spin::OnceCell;
use log::info;
use spin::Mutex;
use crate::kernel::device::ata::IdeController;
use crate::kernel::device::ata::{IdeController, BLOCK_SIZE};
use crate::println;
#[allow(clippy::same_name_method)]
mod ata;
......
......@@ -66,6 +66,7 @@
extern crate alloc;
mod encoding;
mod fs;
mod kernel;
mod macros;
mod mutex;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment