David Craven <da...@craven.ch> writes:

>> (device "my-root")
>
>> (device "my-boot")
>
> device should be a path to the device node and should look something
> like /dev/sda1 and /dev/sda2.
>
>> (title 'label)
>
>> (title 'label)
>
> remove these

(title 'label) instructs the boot routine to look for a partition or
device with filesystem label "my-root" or "my-boot" instead of a device
path. That works on my GuixSD at least:

  (file-systems (cons (file-system
                        (device "root")
                        (title 'label)
                        (mount-point "/")
                        (type "ext4"))
                      %base-file-systems))

Reply via email to