diff options
-rwxr-xr-x | share/hydractl/provision | 4 |
1 files changed, 3 insertions, 1 deletions
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 \ |