The file system module for rCore OS.
Core:
rcore-fs
: Interfaces and utilities that can be used in an OS.- Virtual File System:
FileSystem
,INode
- Device and cache layer:
BlockDevice
,BlockCache
- Virtual File System:
Specific file systems:
rcore-fs-sfs
: Simple File System from uCore OSrcore-fs-sefs
: Simple Encrypted File Systemrcore-fs-ext2
: Ext2rcore-fs-ramfs
: RAM based FSrcore-fs-mountfs
: Mountable FS wrapperrcore-fs-devfs
: Device file systemrcore-fs-hostfs
: File system at host OS
Utilities:
rcore-fs-fuse
: FUSE wrapper for VFS. Mount any FS to your Linux / macOS.rcore-fs-ucore
: uCore VFS wrapper for Rust VFS. Use any FS in the origin uCore. See uCore with Rust SFS for example.