From c874d253290aa603aa0625c99023cd68aa125ad5 Mon Sep 17 00:00:00 2001 From: zj <1052308257@qq.com> Date: Sun, 23 Nov 2025 22:38:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index e69de29..d4375cc 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,12 @@ +# calamares 安装程序源码 + +修复bios传统引导,执行bootload时,报错gurb问题 + + if install_hybrid_grub == True and efi_boot_loader != "grub": + raise ValueError(f"efi_boot_loader '{efi_boot_loader}' is illegal when install_hybrid_grub is 'true'!") + return + +判断问题,去除 return,后正常执行 + + if install_hybrid_grub == True and efi_boot_loader != "grub": + raise ValueError(f"efi_boot_loader '{efi_boot_loader}' is illegal when install_hybrid_grub is 'true'!")