https://github.com/imlk0/xv7-fs
A simple vfs implements for xv7 operation system (Course Design)
https://github.com/imlk0/xv7-fs
Last synced: 3 months 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-11T17:13:52.000Z (almost 5 years ago)
- Last Synced: 2025-02-07T17:34:51.633Z (5 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