Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trmckay/halogen
Kernel for rv64gc in Rust
https://github.com/trmckay/halogen
operating-system risc-v rust
Last synced: about 1 month ago
JSON representation
Kernel for rv64gc in Rust
- Host: GitHub
- URL: https://github.com/trmckay/halogen
- Owner: trmckay
- License: mit
- Created: 2021-05-17T05:28:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-20T03:59:47.000Z (about 2 years ago)
- Last Synced: 2024-10-13T06:22:55.372Z (2 months ago)
- Topics: operating-system, risc-v, rust
- Language: Rust
- Homepage:
- Size: 147 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Halogen
Halogen is an operating system kernel for RISC-V rv64gc. It's called Halogen
because it's lightweight and blows up if you aren't careful.## Development
### Requirements
- [`rustup`](https://rustup.rs) or Rust with `riscv64gc-unknown-none-elf` target
- [`riscv64-unknown-elf-` toolchain](https://github.com/riscv-collab/riscv-gnu-toolchain)
- [`qemu-system-riscv64`](https://www.qemu.org)
- [`just`](https://github.com/casey/just)### Usage
Create the env file and edit if necessary.
```bash
$ cp .env.example .env
```Build a recipe with the `just` command.
```bash
$ just --list # List recipes
$ just [recipe] # Build a recipe
```## More documentation
See the [`docs`](./docs/README.md)