This is a toy operating system running on bare metal Raspberry Pi 3 Model B. It could run on Raspberry Pi 4, but I don't have one to test.
This source builds on target aarch64-unknown-none-softfloat
.
For more information, refer to .cargo/config.toml
.
To add the target, run
rustup target add aarch64-unknown-none-softfloat
Run cargo build_device
. ELF output will be located at
target/aarch64-unknown-none-softfloat/debug/osdev
.
Then, execute QEMU:
qemu-system-aarch64 \
-nographic \
-M raspi3b \
-kernel target/aarch64-unknown-none-softfloat/debug/osdev
Install required dependencies
cargo install cargo-binutils
rustup component add llvm-tools
Build, and strip image for bare metal:
cargo build_device_img
The image will be on the root project.
We have some on-host tests especially for data structures. Run test with
cargo test --features "aarch64" -- --test-threads=1
You can generate and view the project documentation:
make all
make serve
This will serve the documentation at http://localhost:8000
.
make clean
This removes all documentation from the output directory.