Browse Source

docs: add a tutorial on use U-Boot and RustSBI to boot ArchLinux in qemu

guttatus 7 months ago
parent
commit
b125aa421c

+ 33 - 0
docs/booting-archlinux-in-qemu-using-uboot-and-rustsbi.md

@@ -0,0 +1,33 @@
+# 使用RustSBI & U-Boot在QEMU中启动ArchLinux
+
+本教程给出了使用RustSBI和U-Boot在QEMU中启动ArchLinux的基本流程。
+
+本教程要求您使用非RISC-V Arch Linux(x86_64 或 aarch64 等)机器上运行,因为我们使用了`pacstrap`和`pacman`。
+
+本教程使用软件版本如下:
+
+|         软件          |  版本   |
+| :-------------------: | :-----: |
+| riscv64-linux-gnu-gcc | 14.1.0  |
+|  qemu-system-riscv64  |  9.0.1  |
+|  RustSBI Prototyper   |  0.0.0  |
+|        U-Boot         | 2024.04 |
+
+1. 安装依赖环境。
+``` shell
+# pacman -Syu then reboot is recommended before this
+$ sudo pacman -S arch-install-scripts git qemu-img qemu-system-riscv riscv64-linux-gnu-gcc devtools-riscv64
+```
+
+2. Clone构建脚本,构建rootfs和镜像。
+``` shell
+$ git clone -b rustsbi https://github.com/guttatus/archriscv-scriptlet.git
+$ cd archriscv-scriptlet
+$ ./mkrootfs
+$ ./mkimg
+```
+3. 使用Qemu启动Archlinux
+``` shell
+$ ./startqemu.sh
+```
+如果在最后一步中,您发现自己卡在 `[ OK ] Reached target Graphical Interface` 超过5分钟,只需按 `Ctrl`-`C` 并重新运行 `startqemu.sh`。

+ 1 - 1
docs/booting-linux-kernel-in-qemu-using-uboot-and-opensbi.md

@@ -479,7 +479,7 @@ $ make -j$(nproc)
 
 本小节将使用二进制文件 `./spl/u-boot-spl`和`./u-boot.itb `。
 
-### 使用OpenSBI `fw_dynamic固件启动Linux Kernel
+### 使用OpenSBI `fw_dynamic`固件启动Linux Kernel
 
 进入`workshop`目录