Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imtsuki/xv7
🦀️ Operating System in 100% Pure Rust
https://github.com/imtsuki/xv7
kernel operating-system rust xv6
Last synced: about 2 months ago
JSON representation
🦀️ Operating System in 100% Pure Rust
- Host: GitHub
- URL: https://github.com/imtsuki/xv7
- Owner: imtsuki
- License: apache-2.0
- Created: 2020-01-02T10:04:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-08T03:58:25.000Z (over 3 years ago)
- Last Synced: 2024-10-12T21:09:52.177Z (2 months ago)
- Topics: kernel, operating-system, rust, xv6
- Language: Rust
- Homepage:
- Size: 3.17 MB
- Stars: 101
- Watchers: 3
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# xv7
You can view the development notes on [the Telegram Channel](https://t.me/xv7notes).
## Prerequisites
Install cargo-make:
```bash
cargo install cargo-make
```Also, you should have the latest version of [QEMU](https://www.qemu.org) installed.
## Build and Run
Simply run the following command:
```bash
cargo make qemu
```You can use KVM to speed up emulation:
```bash
cargo make qemu-kvm
```To compose a bootable USB drive:
```bash
cargo make compose-esp --env ESP=/path/to/your/drive
```## Tips
For better development experience, install these additional tools:
```bash
rustup component add llvm-tools-preview
cargo install cargo-binutils
cargo install rustfilt
```## License
This project is licensed under either of
- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0))
- MIT license ([LICENSE-MIT](LICENSE-MIT) or
[http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT))at your option.