summaryrefslogtreecommitdiff
path: root/gnu/system/image.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2025-11-26 10:19:45 +0200
committerEfraim Flashner <efraim@flashner.co.il>2025-11-26 13:17:38 +0200
commit3a95404e15be8fdd4be6d516c0c1846e983d669b (patch)
tree3d336556d74c300dd9f85ceb28b34210a09e0257 /gnu/system/image.scm
parent1dfe1ebdf6399256b5ed9f2d6e77722aceaae07d (diff)
system: image: Expand list of bootloaders using grub-efi.
* gnu/system/image.scm (bootloader-uses-grub-efi?): Add the other grub-efi* bootloader names. Change-Id: I5b7140db16022601fbf7326f45ebe0a058640c1c
Diffstat (limited to 'gnu/system/image.scm')
-rw-r--r--gnu/system/image.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/system/image.scm b/gnu/system/image.scm
index 5e43eb861f4..66b9f3abec8 100644
--- a/gnu/system/image.scm
+++ b/gnu/system/image.scm
@@ -358,7 +358,11 @@ set to the given OS."
358(define (bootloader-uses-grub-efi? bootloader) 358(define (bootloader-uses-grub-efi? bootloader)
359 "Return true if the bootloader-name contains grub-efi." 359 "Return true if the bootloader-name contains grub-efi."
360 (memq (bootloader-name bootloader) 360 (memq (bootloader-name bootloader)
361 (list grub-efi grub-efi32 grub-efi-removable-bootloader))) 361 (list grub-efi grub-efi32
362 grub-efi-removable-bootloader
363 grub-efi32-removable-bootloader
364 grub-efi-netboot-bootloader
365 grub-efi-netboot-removable-bootloader)))
362 366
363 367
364;; 368;;