Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/common/radxa-os/build-system/_install_env.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@

我们需要在 PC 上安装 Visual Studio Code、Dev Container 拓展插件和 Docker,方便快速构建 {props?.items ?? 'U-Boot、Kernel and Radxa OS'} 的编译和开发环境。

### 启用 binfmt

支持以运行跨架构二进制文件。

<NewCodeBlock tip="Linux@host$" type="host">

```bash
sudo apt-get update
sudo apt-get install git qemu-user-static binfmt-support
```

</NewCodeBlock>

### Docker

可以根据自己使用需求选择 Docker 引擎或 Docker 桌面版本进行安装。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@ This guide covers setting up the development environment for {props?.items ?? 'U

To quickly set up a compilation and development environment for {props?.items ?? 'U-Boot, Kernel, Radxa OS'}, we need to install Visual Studio Code, the Dev Container extension, and Docker on your PC.

### Enable binfmt

Enables running cross-architecture binaries.

<NewCodeBlock tip="Linux@host$" type="host">

```bash
sudo apt-get update
sudo apt-get install git qemu-user-static binfmt-support
```

</NewCodeBlock>

### Docker

You can choose to install either Docker Engine or Docker Desktop based on your needs.
Expand Down
Loading