me
/
guix
Archived
1
0
Fork 0

installer: Create bios_grub partition when it is needed.

* gnu/installer/parted.scm (auto-partition!): Only check for ESP on EFI
installations.
master
Miguel Ángel Arruga Vivas 2020-10-17 14:20:41 +02:00
parent a3ab43f49a
commit 19c14d95b3
No known key found for this signature in database
GPG Key ID: 634C6E8979FABEC2
1 changed files with 6 additions and 6 deletions

View File

@ -911,13 +911,13 @@ exists."
(let* ((start-partition
(and (not has-extended?)
(not esp-partition)
(if (efi-installation?)
(user-partition
(fs-type 'fat32)
(esp? #t)
(size new-esp-size)
(mount-point (default-esp-mount-point)))
(and (not esp-partition)
(user-partition
(fs-type 'fat32)
(esp? #t)
(size new-esp-size)
(mount-point (default-esp-mount-point))))
(user-partition
(fs-type 'ext4)
(bootable? #t)