Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caoimhebyrne/angeldust
A Rust mini-kernel for the Raspberry Pi 3B and Raspberry Pi 4B
https://github.com/caoimhebyrne/angeldust
aarch64 kernel raspberry-pi rust rust-kernel
Last synced: about 1 month ago
JSON representation
A Rust mini-kernel for the Raspberry Pi 3B and Raspberry Pi 4B
- Host: GitHub
- URL: https://github.com/caoimhebyrne/angeldust
- Owner: caoimhebyrne
- License: mit
- Created: 2024-02-11T11:29:47.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-02-21T11:59:56.000Z (9 months ago)
- Last Synced: 2024-05-01T18:12:34.651Z (7 months ago)
- Topics: aarch64, kernel, raspberry-pi, rust, rust-kernel
- Language: Rust
- Homepage:
- Size: 44.9 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## `angeldust` 🌸 ✨
A Rust mini-kernel (maybe operating system at some point) for the Raspberry Pi 3B (through QEMU) and Raspberry Pi 4B (tested on real hardware).
### Building & Running
**1.** Install QEMU via your package manager of choice (optional!):
```
$ brew install qemu # macOS
$ sudo dnf install qemu # Fedora Linux
```**2.** Install ``rust`` & ``rustup``, if you haven't already:
```
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```
*(taken from [rust-lang.org/tools/install](https://www.rust-lang.org/tools/install))*
**3.** Install the `aarch64-unknown-none-softfloat` target, if you haven't already:
```
$ rustup target add aarch64-unknown-none-softfloat
```**4.** You can now use `cargo run` to run angeldust on a Raspberry Pi 3B in QEMU.
*(TODO: Add script for copying to SD card, aarch64-elf-binutils on macOS)*
### License
This project uses the [MIT license](./LICENSE).