From 978043e47d1143ca2d5cf22b20793f032e8eb5a5 Mon Sep 17 00:00:00 2001 From: login Date: Sun, 18 Dec 2022 15:09:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BD=93=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E4=B8=AD=E4=B8=8D=E5=AD=98=E5=9C=A8dosfstools=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E6=97=A0=E6=B3=95=E6=AD=A3=E7=A1=AE=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E5=8C=96=E7=A3=81=E7=9B=98=E9=95=9C=E5=83=8F=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98=20(#117)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 修复当系统中不存在dosfstools时,无法正确格式化磁盘镜像的问题 --- docs/introduction/build_system.md | 1 + tools/bootstrap.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/introduction/build_system.md b/docs/introduction/build_system.md index 4525ac42..d70cf205 100644 --- a/docs/introduction/build_system.md +++ b/docs/introduction/build_system.md @@ -44,6 +44,7 @@ bash bootstrap.sh - fdisk - lsb-release - git +- dosfstools - Rust以及其工具链 **请留意,若您的Linux系统是在虚拟机中运行的,还请您在您的VMware/Virtual Box虚拟机的处理器设置选项卡中,开启Intel VT-x或AMD-V选项,否则,DragonOS将无法运行。** diff --git a/tools/bootstrap.sh b/tools/bootstrap.sh index b4cf0f02..f8429c80 100644 --- a/tools/bootstrap.sh +++ b/tools/bootstrap.sh @@ -38,7 +38,7 @@ install_ubuntu_debian_pkg() gnupg \ lsb-release \ llvm-dev libclang-dev clang gcc-multilib \ - gcc build-essential fdisk + gcc build-essential fdisk dosfstools if [ -z "$(which docker)" ]; then echo "正在安装docker..."