mothacehe pushed a commit to branch master
in repository guix.
commit fb3df2011692b2a6fea9f4fefd71dd788453fbae
Author: Mathieu Othacehe <[email protected]>
AuthorDate: Fri Nov 12 13:26:52 2021 +0000
build: bootloader: Add GPT support.
* gnu/build/bootloader.scm (install-efi-loader): Add GPT support.
---
gnu/build/bootloader.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/build/bootloader.scm b/gnu/build/bootloader.scm
index 3916930..9a89fe5 100644
--- a/gnu/build/bootloader.scm
+++ b/gnu/build/bootloader.scm
@@ -94,6 +94,7 @@ load the Grub bootloader located in the 'Guix_image' root
partition."
;; (not eliminate it).
(format port
"insmod part_msdos~@
+ insmod part_gpt~@
search --set=root --label Guix_image~@
configfile /boot/grub/grub.cfg~%")))
(install-efi grub-efi grub-config esp)