[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#72457] [PATCH v5 00/15] Rewrite bootloader subsystem.
From: |
Sergey Trofimov |
Subject: |
[bug#72457] [PATCH v5 00/15] Rewrite bootloader subsystem. |
Date: |
Wed, 07 Aug 2024 06:52:13 +0200 |
Hi Lilah,
Lilah Tascheter <lilah@lunabee.space> writes:
> Alright, hopefully this works then!
>
It works with the following patch applied! I'll test other bootloaders
later in the week.
--8<---------------cut here---------------start------------->8---
diff --git a/gnu/bootloader/grub.scm b/gnu/bootloader/grub.scm
index 7bb7e4eefa..cb68744135 100644
--- a/gnu/bootloader/grub.scm
+++ b/gnu/bootloader/grub.scm
@@ -259,7 +259,7 @@ (define* (core.img grub format #:key bootloader-config
store-crypto-devices
'#$(if tftp? '() '("part_msdos" "part_gpt"))
;; file systems
'#$(cond ((member fs '("ext2" "ext3" "ext4")) '("ext2"))
- ((member fs "vfat" "fat32") '("fat"))
+ ((member fs '("vfat" "fat32")) '("fat"))
((and tftp? efi?) '("efinet"))
((and tftp? bios?) '("pxe"))
(else (list fs)))
--8<---------------cut here---------------end--------------->8---
- [bug#72457] [PATCH v5 08/15] gnu: packages: Add pesign., (continued)
- [bug#72457] [PATCH v5 08/15] gnu: packages: Add pesign., Lilah Tascheter, 2024/08/06
- [bug#72457] [PATCH v5 01/15] guix: scripts: Rewrite reinstall-bootloader to use provenance data., Lilah Tascheter, 2024/08/06
- [bug#72457] [PATCH v5 10/15] gnu: packages: Add systemd-stub., Lilah Tascheter, 2024/08/06
- [bug#72457] [PATCH v5 04/15] gnu: Core bootloader changes., Lilah Tascheter, 2024/08/06
- [bug#72457] [PATCH v5 03/15] guix: scripts: Remove unused code., Lilah Tascheter, 2024/08/06
- [bug#72457] [PATCH v5 11/15] gnu: bootloaders: Add uki-efi-bootloader., Lilah Tascheter, 2024/08/06
- [bug#72457] [PATCH v5 15/15] teams: Add bootloading team., Lilah Tascheter, 2024/08/06
- [bug#72457] [PATCH v5 14/15] gnu: tests: Update tests to new targets system., Lilah Tascheter, 2024/08/06
- [bug#72457] [PATCH v5 12/15] gnu: system: Update examples., Lilah Tascheter, 2024/08/06
- [bug#72457] [PATCH v5 13/15] doc: Update bootloader documentation., Lilah Tascheter, 2024/08/06
- [bug#72457] [PATCH v5 00/15] Rewrite bootloader subsystem.,
Sergey Trofimov <=