Keine Beschreibung

guttatus 87f4e99155 fix: fix non-boot hart not executed `privileged_version_detection` (#59) vor 2 Monaten
.cargo afa1907da5 feat(bench-kernel): impl ipi test vor 3 Monaten
bench-kernel 6400ea2a00 fix: Resolve pre-commit check build target conflict with xtask vor 3 Monaten
docs 3c83a541e4 docs: add a guide for booting Ubuntu on qemu with OpenSBI and EDK II vor 2 Monaten
prototyper 87f4e99155 fix: fix non-boot hart not executed `privileged_version_detection` (#59) vor 2 Monaten
supervisor 7180a8d572 feat: Add pre-commit, typos, and git-cliff for automation and check typos vor 4 Monaten
test-kernel 22054e2db2 fix: fix typo vor 3 Monaten
xtask cf87a9bde8 feat(prototyper): add heap vor 2 Monaten
.gitignore 0f815d2c71 fix(prototyper): Nemu's device tree doesn't have `riscv,isa-extensions` field, so it is not parsed vor 5 Monaten
.pre-commit-config.yaml 6400ea2a00 fix: Resolve pre-commit check build target conflict with xtask vor 3 Monaten
CHANGELOG.md 7180a8d572 feat: Add pre-commit, typos, and git-cliff for automation and check typos vor 4 Monaten
Cargo.lock eda5852e2f fix: update serde-device-tree vor 2 Monaten
Cargo.toml 6400ea2a00 fix: Resolve pre-commit check build target conflict with xtask vor 3 Monaten
LICENSE-MIT fc3347e4a1 lib: project basic structure vor 11 Monaten
LICENSE-MULAN fc3347e4a1 lib: project basic structure vor 11 Monaten
README.md 07c140c7dc docs: add build tool description vor 3 Monaten
_typos.toml 7180a8d572 feat: Add pre-commit, typos, and git-cliff for automation and check typos vor 4 Monaten
cliff.toml 7180a8d572 feat: Add pre-commit, typos, and git-cliff for automation and check typos vor 4 Monaten
rust-toolchain.toml 292165d872 refactor(prototyper): Decoupling device drivers from SBI implementation vor 5 Monaten

README.md

RustSBI Prototyper

RustSBI Prototyper is a developing RISC-V Secure Bootloader solution. It can be integrated with the Rust or C language ecosystem to form a complete RISC-V bootloader ecosystem.

Setting Up the Development Environment

Packages to be installed

cargo install cargo-binutils
sudo apt install u-boot-tools

Optional Tools

The following tools are not mandatory but can be useful for enhancing your development experience.

Install pre-commit

pre-commit is a tool that runs code checks before you commit your code.

pipx install pre-commit

# After installation, run pre-commit install to set it up for your project.
pre-commit install

Install Cargo Deny

Cargo deny is a Cargo plugin used to check the security of your dependencies.

cargo install --locked cargo-deny

Install typos

typos is a spell-checking tool.

cargo install typos-cli

Install git cliff

git cliff is a tool for generating changelogs.

cargo install git-cliff

License

This project is dual-licensed under MIT or Mulan-PSL v2. See LICENSE-MIT and LICENSE-MULAN for details.