From: Silvio Rhatto Date: Sat, 29 Jan 2022 16:01:52 +0000 (-0300) Subject: Fix: provision: set bootloar ID to Debian X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=26e47b7e67bab62cda19791691f9c7fd73384100;p=hydra.git Fix: provision: set bootloar ID to Debian --- diff --git a/share/hydractl/provision b/share/hydractl/provision index 76e7dc6..9ba88ce 100755 --- a/share/hydractl/provision +++ b/share/hydractl/provision @@ -730,7 +730,9 @@ EOF if [ "$boot_mode" == "bios" ]; then hydra_sudo_run chroot $WORK/ grub-install --recheck --force $device else - grub_opts="$grub_uefi_nvram $grub_uefi_secure_boot --bootloader-id=GRUB" + # Bootloader ID currently needs to be "Debian" + # See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925309 + grub_opts="$grub_uefi_nvram $grub_uefi_secure_boot --bootloader-id=Debian" hydra_sudo_run chroot $WORK/ grub-install --target=${grub_arch}-efi \ --efi-directory=/boot/efi \