File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed
Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ sidebar_label: "飞腾派"
55
66# 飞腾派
77
8- 本文档介绍如何在飞腾派(Phytium Pi)开发板上启动和验证 AxVisor 项目。飞腾派是基于飞腾 E2000 系列处理器的开发板,具有强大的国产化处理器和丰富的外设接口,是 AxVisor 虚拟化平台的重要硬件载体 。
8+ 本文档介绍如何在飞腾派(Phytium Pi)开发板上启动和验证 AxVisor 项目。在飞腾派开发板环境中,AxVisor 支持同时启动运行多个客户机操作系统,以下将启动 ArceOS 和 Linux 两个客户机操作系统 。
99
1010## 环境要求
1111
@@ -72,6 +72,7 @@ cp configs/board/phytiumpi.toml tmp/configs/
7272
7373 ``` bash
7474 cp configs/vms/arceos-aarch64-e2000-smp1.toml tmp/configs/
75+
7576 cp configs/vms/linux-aarch64-e2000-smp1.toml tmp/configs/
7677 ```
7778
@@ -91,7 +92,7 @@ cp configs/board/phytiumpi.toml tmp/configs/
9192
9293### 生成配置
9394
94- 使用 ` cargo xtask defconfig phytiumpi ` 命令设置 QEMU AArch64 为默认构建配置。这个命令会将 ` configs/board/phytiumpi.toml ` 复制为 ` .build.toml ` ,作为默认的构建配置。
95+ 使用 ` cargo xtask defconfig phytiumpi ` 命令设置 QEMU AArch64 为默认构建配置。实际上, 这个命令会将 ` configs/board/phytiumpi.toml ` 复制为 ` .build.toml ` ,作为默认的构建配置。
9596
9697### 编译及启动
9798
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ sidebar_label: "ROC-RK3568-PC"
55
66# ROC-RK3568-PC
77
8- 本文档介绍如何在 ROC-RK3568-PC 开发板上启动和验证 AxVisor 项目。ROC-RK3568-PC 是基于瑞芯微 RK3568 芯片的开发板,具有强大的计算能力和丰富的外设接口,是 AxVisor 虚拟化平台的理想硬件载体 。
8+ 本文档介绍如何在 ROC-RK3568-PC 开发板上启动和验证 AxVisor 项目。在 ROC-RK3568-PC 开发板环境中,AxVisor 支持同时启动运行多个客户机操作系统,以下将启动 ArceOS 和 Linux 两个客户机操作系统 。
99
1010## 1. 环境要求
1111
@@ -75,6 +75,7 @@ cp .github/workflows/uboot.toml tmp/configs/
7575
7676 ``` bash
7777 cp configs/vms/arceos-aarch64-rk3568-smp1.toml tmp/configs/
78+
7879 cp configs/vms/linux-aarch64-rk3568-smp1.toml tmp/configs/
7980 ```
8081
@@ -94,7 +95,7 @@ cp .github/workflows/uboot.toml tmp/configs/
9495
9596### 生成配置
9697
97- 使用 ` cargo xtask defconfig roc-rk3568-pc ` 命令设置 QEMU AArch64 为默认构建配置。这个命令会将 ` configs/board/roc-rk3568-pc.toml ` 复制为 ` .build.toml ` ,作为默认的构建配置。
98+ 使用 ` cargo xtask defconfig roc-rk3568-pc ` 命令设置 QEMU AArch64 为默认构建配置。实际上, 这个命令会将 ` configs/board/roc-rk3568-pc.toml ` 复制为 ` .build.toml ` ,作为默认的构建配置。
9899
99100### 编译及启动
100101
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ sidebar_label: "AArch64"
55
66# AArch64
77
8- 本文档介绍如何在 QEMU AArch64 环境中启动和验证 AxVisor 项目。在 QEMU AArch64 环境中,AxVisor 支持同时启动运行多个客户机操作系统。
8+ 本文档介绍如何在 QEMU AArch64 环境中启动和验证 AxVisor 项目。在 QEMU AArch64 环境中,AxVisor 支持同时启动运行多个客户机操作系统,以下将启动 ArceOS 和 Linux 两个客户机操作系统 。
99
1010## 环境要求
1111
@@ -71,8 +71,8 @@ cp configs/board/qemu-aarch64.toml tmp/configs/
71711 . 复制客户机配置文件:
7272
7373 ``` bash
74- # 复制客户机配置文件
7574 cp configs/vms/arceos-aarch64-qemu-smp1.toml tmp/configs/
75+
7676 cp configs/vms/linux-aarch64-qemu-smp1.toml tmp/configs/
7777 ```
7878
@@ -92,7 +92,7 @@ cp configs/board/qemu-aarch64.toml tmp/configs/
9292
9393# ## 生成配置
9494
95- 使用 ` cargo xtask defconfig qemu-aarch64` 命令设置 QEMU AArch64 为默认构建配置。这个命令会将 ` configs/board/qemu-aarch64.toml` 复制为 ` .build.toml` ,作为默认的构建配置。
95+ 使用 ` cargo xtask defconfig qemu-aarch64` 命令设置 QEMU AArch64 为默认构建配置。实际上, 这个命令会将 ` configs/board/qemu-aarch64.toml` 复制为 ` .build.toml` ,作为默认的构建配置。
9696
9797# ## 编译及启动
9898
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ sidebar_label: "x86_64"
55
66# x86_64
77
8- 本文档介绍如何在 QEMU x86_64 环境中启动和验证 AxVisor 项目。在 QEMU x86_64 环境中,AxVisor 支持同时启动运行多个客户机操作系统。
8+ 本文档介绍如何在 QEMU x86_64 环境中启动和验证 AxVisor 项目。在 QEMU x86_64 环境中,AxVisor 支持同时启动运行多个客户机操作系统,以下将启动 ArceOS 和 Linux 两个客户机操作系统 。
99
1010## 环境要求
1111
@@ -71,8 +71,8 @@ cp configs/board/qemu-x86_64.toml tmp/configs/
71711 . 复制客户机配置文件:
7272
7373 ``` bash
74- # 复制客户机配置文件
7574 cp configs/vms/arceos-x86_64-qemu-smp1.toml tmp/configs/
75+
7676 cp configs/vms/linux-x86_64-qemu-smp1.toml tmp/configs/
7777 ```
7878
@@ -92,7 +92,7 @@ cp configs/board/qemu-x86_64.toml tmp/configs/
9292
9393# ## 生成配置
9494
95- 使用 ` cargo xtask defconfig qemu-x86_64` 命令设置 QEMU x86_64 为默认构建配置。这个命令会将 ` configs/board/qemu-x86_64.toml` 复制为 ` .build.toml` ,作为默认的构建配置。
95+ 使用 ` cargo xtask defconfig qemu-x86_64` 命令设置 QEMU x86_64 为默认构建配置。实际上, 这个命令会将 ` configs/board/qemu-x86_64.toml` 复制为 ` .build.toml` ,作为默认的构建配置。
9696
9797# ## 编译及启动
9898
You can’t perform that action at this time.
0 commit comments