mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
image: Consider grub-efi-removable-bootloader to be EFI bootloader.
Without this change, trying to create a system image with efi-raw type while using grub-efi-removable-bootloader fails with fairly confusing message: EFI bootloader required with GPT partitioning * gnu/system/image.scm (system-disk-image): Consider grub-efi-removable-bootloader to be EFI bootloader. Change-Id: I5f5e1a94e825fd29d6880c5bafb330e16a5ac962
This commit is contained in:
parent
299ce524c9
commit
21989dd57d
1 changed files with 2 additions and 1 deletions
|
@ -535,7 +535,8 @@ (define (genimage-type-options image-type image)
|
|||
|
||||
(when (and (gpt-image? image)
|
||||
(not
|
||||
(memq (bootloader-name bootloader) '(grub-efi grub-efi32))))
|
||||
(memq (bootloader-name bootloader)
|
||||
'(grub-efi grub-efi32 grub-efi-removable-bootloader))))
|
||||
(raise
|
||||
(formatted-message
|
||||
(G_ "EFI bootloader required with GPT partitioning"))))
|
||||
|
|
Loading…
Reference in a new issue