https://github.com/equation314/nimbos
An experimental RTOS written in Rust.
https://github.com/equation314/nimbos
kernel operating-system osdev rust
Last synced: 13 days ago
JSON representation
An experimental RTOS written in Rust.
- Host: GitHub
- URL: https://github.com/equation314/nimbos
- Owner: equation314
- License: gpl-3.0
- Created: 2022-03-15T14:25:21.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-07T19:49:01.000Z (over 2 years ago)
- Last Synced: 2025-03-25T06:51:14.435Z (about 1 month ago)
- Topics: kernel, operating-system, osdev, rust
- Language: Rust
- Homepage:
- Size: 272 KB
- Stars: 36
- Watchers: 2
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NimbOS 2022
An experimental real-time operating system (RTOS) written in Rust.
🚧 Working In Progress.
## Features
* Multi-architecture support: x86_64, aarch64, riscv64
* Preemptive scheduler
* User/kernel space isolation## TODO
* [x] More effective thread sleeping
* [ ] Kernel mutex/semaphore/condvar
* [x] Run with [RVM1.5](https://github.com/rvm-rtos/RVM1.5)
* [ ] SMP## Build & Run (in QEMU)
```sh
cd kernel
make env # for first time
make run ARCH=x86_64 LOG=warn
```