RustyBoot-RISCV WIP
Minimalist, modular RISC-V bootloader inspired by the original RustyBoot (UEFI/x86). Focus: early bring-up, memory init, partition & FS probing, ELF kernel handoff.
- Arch: riscv64 (virt/QEMU)
- Planned: UART · virtio · MBR/GPT · EXT2/3/4 · ELF load
- Design: no_std • modular drivers
feature notes
- _start & early UART logging
- Frame allocator groundwork
- Partition + FS scanning path
- Virtio abstraction shaping
- ELF parsing jump target
# clone (HTTPS)
git clone https://github.com/KushalMeghani1644/RustyBoot-RISCV
cd RustyBoot-RISCV
# run in QEMU (future)
# qemu-system-riscv64 ...
# mirror (SSH)
git clone git@github.com:KushalMeghani1644/RustyBoot-RISCV.git
Note: test in VM/QEMU while early memory + device flows evolve.