diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2022-01-29 13:01:52 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2022-01-29 13:01:52 -0300 |
commit | 26e47b7e67bab62cda19791691f9c7fd73384100 (patch) | |
tree | e794bfaa5085644c60c2395165de4564b8faaa8b | |
parent | a4f5dffc79b784d2986a2075dc4a8b1062ab6f50 (diff) | |
download | hydra-26e47b7e67bab62cda19791691f9c7fd73384100.tar.gz hydra-26e47b7e67bab62cda19791691f9c7fd73384100.tar.bz2 |
Fix: provision: set bootloar ID to Debian
-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 \ |