Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mental32/kernel

A Unikernel For Embedded Systems
https://github.com/mental32/kernel

drivers kernel operating-system osdev rust

Last synced: 7 days ago
JSON representation

A Unikernel For Embedded Systems

Awesome Lists containing this project

README

        

# fart-joke

## A hobby kernel written in Rust.

The root workspace is divided into multiple crates:

* kernel (architecture independent code)
* arch (architecture specific code)
* sched (scheduling i.e. futures executor)
* mem (memory management utilities)

## Building/Running

A script is provided `/x.py` that is used to build the kernel, produce an ISO
and, optionally, invoke QEMU with the kernel ISO.

Appropriately named options are available:

* `python x.py --build`
* `python x.py --iso`
* `python x.py --qemu`

Also a `--release` flag is available that can be added with any of the above (note that I dont test release builds so stuff probably breaks there.)