File tree Expand file tree Collapse file tree 6 files changed +0
-32
lines changed
Expand file tree Collapse file tree 6 files changed +0
-32
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ license.workspace = true
66version.workspace = true
77
88[features ]
9- myfs = [" dep:crate_interface" ]
109use-ramdisk = []
1110
1211[dependencies ]
@@ -21,7 +20,6 @@ axns = {workspace = true}
2120axsync = {workspace = true }
2221cap_access = " 0.1"
2322cfg-if = " 1.0"
24- crate_interface = {version = " 0.1" , optional = true }
2523lazyinit = " 0.2"
2624log = " 0.4"
2725lwext4_rust = {git = " https://github.com/Josen-B/lwext4_rust.git" }
Original file line number Diff line number Diff line change @@ -6,11 +6,6 @@ use axio::SeekFrom;
66use cap_access:: { Cap , WithCap } ;
77use core:: fmt;
88
9- #[ cfg( feature = "myfs" ) ]
10- pub use crate :: dev:: Disk ;
11- #[ cfg( feature = "myfs" ) ]
12- pub use crate :: fs:: myfs:: MyFileSystemIf ;
13-
149/// Alias of [`axfs_vfs::VfsNodeType`].
1510pub type FileType = axfs_vfs:: VfsNodeType ;
1611/// Alias of [`axfs_vfs::VfsDirEntry`].
Original file line number Diff line number Diff line change 11pub mod ext4fs;
22pub mod fatfs;
33
4- #[ cfg( feature = "myfs" ) ]
5- pub mod myfs;
6-
74pub use axfs_devfs as devfs;
85pub use axfs_ramfs as ramfs;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1010//! **enabled** by default.
1111//! - `ramfs`: Mount [`axfs_ramfs::RamFileSystem`] on `/tmp`. This feature is
1212//! **enabled** by default.
13- //! - `myfs`: Allow users to define their custom filesystems to override the
14- //! default. In this case, [`MyFileSystemIf`] is required to be implemented
15- //! to create and initialize other filesystems. This feature is **disabled** by
16- //! by default, but it will override other filesystem selection features if
17- //! both are enabled.
1813//!
1914//! [FAT]: https://en.wikipedia.org/wiki/File_Allocation_Table
2015//! [`MyFileSystemIf`]: fops::MyFileSystemIf
You can’t perform that action at this time.
0 commit comments