1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-08 08:36:15 +02:00
youki/crates/container/src/rootfs/mod.rs

12 lines
327 B
Rust

//! During kernel initialization, a minimal replica of the ramfs filesystem is loaded, called rootfs.
//! Most systems mount another filesystem over it
#[allow(clippy::module_inception)]
pub(crate) mod rootfs;
pub use rootfs::RootFS;
pub(super) mod device;
pub(super) mod mount;
pub(super) mod symlink;
pub(super) mod utils;