From 543fb5c79c2b087cff734dc2deb07c770e2d3f2c Mon Sep 17 00:00:00 2001 From: pointer-to-bios Date: Mon, 15 Jan 2024 18:48:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4dev=E5=88=86=E6=94=AF?= =?UTF-8?q?=E7=9A=84=E4=BE=9D=E8=B5=96=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 ------ src/scripts/depcheck | 6 +----- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/README.md b/README.md index c3b7b1d..c31aa10 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,6 @@ make release=1 > 暂不支持交叉编译和调试 -## 依赖项 - -* doas -* nbd -* qemu - ## 架构支持 * [x] x86_64 diff --git a/src/scripts/depcheck b/src/scripts/depcheck index fc9ecf0..4801d18 100755 --- a/src/scripts/depcheck +++ b/src/scripts/depcheck @@ -26,16 +26,12 @@ color = { arch = subprocess.check_output("uname -m", shell=True).decode().strip() -kernel_modules = [ - "nbd", -] +kernel_modules = [] softwares = { - "doas": ["doas"], "gcc": ["gcc"], "nasm": ["nasm"], "rust": ["rustc", "rustdoc", "rust-lldb"], - "qemu": ["qemu-img", "qemu-nbd", "qemu-system-"+arch], }