https://github.com/luzzif/kore
A kernel written in Rust.
https://github.com/luzzif/kore
kernel rust
Last synced: about 11 hours ago
JSON representation
A kernel written in Rust.
- Host: GitHub
- URL: https://github.com/luzzif/kore
- Owner: luzzif
- Created: 2018-07-11T21:21:21.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-03-21T16:42:45.000Z (over 6 years ago)
- Last Synced: 2025-01-04T03:31:41.166Z (over 1 year ago)
- Topics: kernel, rust
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kore
Kore is a minimal kernel written in Rust.
## Startup
In order to startup the kernel, be sure to have Rust installed
(you can find the instructions [here](https://www.rust-lang.org/en-US/install.html)).
The next step is installing the `bootimage` crate. Since the kernel is in a super-early
development stage, it is currently not multiboot compliant. This tool simply ensures
that a bootloader gets appended to the kernel image when compiling with it.
The last step is installing `QEMU` (you can find the instructions
[here](https://www.qemu.org/download/)), a VM through which
the kernel will be run. That's it, compile and run the kernel by executing
the `bootimage run` command from the project's root.