Eduardo,
Eduardo Thales wrote on 01/09/17 at 23:22:
> I'm trying to install Guix SD with Grub on UEFI and my stuck in this error:
> //gnu/store/4c7x0ji4mni5dayf8ig9rssk50pjims1g-grub-efi-2.02/sbin/grub-install:
> error: failed to get canonical path of 'none'.
[snip]
Here's the culprit:
> (bootloader (grub-configuration (grub grub-efi)
> (device "/dev/sda1")))
The bootloader code was overhauled after Guix 0.13. The syntax is now:
(bootloader (bootloader-configuration
(bootloader grub-efi-bootloader)
(target "/boot/efi"))) ; usually correct, but verify
> I tried to follow what I found in the Reference Manual.
It seems you're consulting an outdated manual that doesn't match the
version of Guix you're invoking to reconfigure your system.
Kind regards,
T G-R