bootloader: grub-efi: Identify as "GuixSD" instead of "grub".

* gnu/bootloader/grub.scm (install-grub-efi): Pass "--bootloader-id" to grub-install.
This commit is contained in:
Marius Bakke 2018-06-25 22:24:45 +02:00
parent aa5a549c65
commit 683016907d
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -397,6 +397,7 @@ (define install-grub-efi
;; root partition.
(setenv "GRUB_ENABLE_CRYPTODISK" "y")
(unless (zero? (system* grub-install "--boot-directory" install-dir
"--bootloader-id=GuixSD"
"--efi-directory" target-esp))
(error "failed to install GRUB (EFI)")))))