bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#40997: [raid] The bootloader can only be installed to a single drive


From: maxim . cournoyer
Subject: bug#40997: [raid] The bootloader can only be installed to a single drive
Date: Fri, 01 May 2020 09:45:00 -0400

Using Guix System, the bootloader declaration doesn't currently seem to
support being installed to multiple drives:

--8<---------------cut here---------------start------------->8---
(bootloader (bootloader-configuration
                 (bootloader grub-bootloader)
                 (target "/dev/sda")
                 (terminal-outputs '(console))))
 --8<---------------cut here---------------end--------------->8---

I suggest to change it so that target can be passed a list like
--8<---------------cut here---------------start------------->8---
(bootloader (bootloader-configuration
                 (bootloader grub-bootloader)
                 (target '("/dev/sda" "/dev/sdb"))
                 (terminal-outputs '(console))))
 --8<---------------cut here---------------end--------------->8---

This is useful when trying to boot a degraded RAID array.

Maxim





reply via email to

[Prev in Thread] Current Thread [Next in Thread]