From 6423f22f702a154c3668befc4e3a508c7d94b171 Mon Sep 17 00:00:00 2001 From: amy Date: Thu, 27 Jan 2022 21:55:06 +0100 Subject: [PATCH] add grub-btrfs --- src/functions/base.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functions/base.rs b/src/functions/base.rs index dc9bf31..667a714 100755 --- a/src/functions/base.rs +++ b/src/functions/base.rs @@ -37,7 +37,7 @@ pub fn genfstab() { } pub fn install_bootloader_efi(efidir: &str) { - install::install(vec!["grub", "efibootmgr"]); + install::install(vec!["grub", "efibootmgr", "grub-btrfs"]); exec_eval( exec_chroot( "grub-install", @@ -60,7 +60,7 @@ pub fn install_bootloader_efi(efidir: &str) { } pub fn install_bootloader_legacy(device: &str) { - install::install(vec!["grub"]); + install::install(vec!["grub", "grub-btrfs"]); exec_eval( exec_chroot( "grub-install",