fix: add --no-nvram to efi grub-install to preserve built-in boot order

This commit is contained in:
Aiden McClelland
2026-02-26 14:48:33 -07:00
parent d422cd3c66
commit e74f8db887
2 changed files with 2 additions and 1 deletions

View File

@@ -359,6 +359,7 @@ pub async fn install_os_to(
"riscv64" => install.arg("--target=riscv64-efi"),
_ => &mut install,
};
install.arg("--no-nvram");
}
install
.arg(disk_path)