Add basic OverlayFS implementation

This commit is contained in:
Shaowei Song 2025-04-11 10:07:25 +00:00 committed by Tate, Hongliang Tian
parent 63831dc2df
commit 914237e9ca
3 changed files with 1310 additions and 0 deletions

View File

@ -10,6 +10,7 @@ pub mod file_table;
pub mod fs_resolver;
pub mod inode_handle;
pub mod named_pipe;
pub mod overlayfs;
pub mod path;
pub mod pipe;
pub mod procfs;

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
// SPDX-License-Identifier: MPL-2.0
mod fs;
pub use fs::OverlayFS;