summaryrefslogtreecommitdiff
path: root/gnu/build
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2021-11-12 13:26:52 +0000
committerMathieu Othacehe <othacehe@gnu.org>2021-11-12 13:26:52 +0000
commitfb3df2011692b2a6fea9f4fefd71dd788453fbae (patch)
treea539fbf13f8198dcd91af336a55127c3cd7de070 /gnu/build
parent096a2bf8c59a955c634cc838e7f7111941c07b37 (diff)
downloadguix-patches-fb3df2011692b2a6fea9f4fefd71dd788453fbae.tar
guix-patches-fb3df2011692b2a6fea9f4fefd71dd788453fbae.tar.gz
build: bootloader: Add GPT support.
* gnu/build/bootloader.scm (install-efi-loader): Add GPT support.
Diffstat (limited to 'gnu/build')
-rw-r--r--gnu/build/bootloader.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/build/bootloader.scm b/gnu/build/bootloader.scm
index 3916930c89..9a89fe55cb 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)