Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imlk0/xv7-fs
A simple vfs implements for xv7 operation system (Course Design)
https://github.com/imlk0/xv7-fs
Last synced: 12 days ago
JSON representation
A simple vfs implements for xv7 operation system (Course Design)
- Host: GitHub
- URL: https://github.com/imlk0/xv7-fs
- Owner: imlk0
- Created: 2020-09-05T07:38:46.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-11T17:13:52.000Z (about 4 years ago)
- Last Synced: 2023-12-05T10:32:23.981Z (11 months ago)
- Language: Rust
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# xv7-fs
Here is an implementation of the file system framework provided to the xv7 system.
## module
- xv7-fs
implementation of vfs.
- xv7-fs-ramfs
memory file system based on vfs.
## TODO list
- inode_operations
- [x] lookup
- [x] mkdir
- [x] create
- [ ] setattr
- [x] getattr
- [ ] update_time
- [x] unlink- file_operations
- [x] read
- [x] readdir
- [x] write- extra syscall
- [x] open
- [x] close