Re: backtrace when building os

2020-06-22 Thread Jan Synacek
Ludovic Courtès  writes:

> Hi,
>
> Jan Synacek  skribis:
>
>> $ cat guix-os.scm
>> (use-modules (gnu bootloader)
>>   (gnu bootloader grub)
>>   (gnu system file-systems))
>>
>> (operating-system
>>   (host-name "jsynacek-guix-os")
>>   (timezone "Europe/Prague")
>>   (locale "en_US.utf8")
>>   (bootloader
>> (bootloader-configuration
>>   (bootloader grub-efi-bootloader)
>>   (target "/dev/sdx")))
>>   (file-systems
>> (list (file-system (mount-point "/home")
>>(device "/dev/sda33")
>>(type "ext4")
>
> This OS lacks a root file system (which is no excuse for throwing a
> backtrace, though!).

Thank you for the explanation. And I agree about the backtrace part.
I have already filed a bug report, although I accidentaly filed it
against guile, instead of guix. Sorry for the mess.

Regards,
-- 
Jan Synacek
Software Engineer, Red Hat




Re: backtrace when building os

2020-06-19 Thread Ludovic Courtès
Hi,

Jan Synacek  skribis:

> $ cat guix-os.scm
> (use-modules (gnu bootloader)
>(gnu bootloader grub)
>(gnu system file-systems))
>
> (operating-system
>   (host-name "jsynacek-guix-os")
>   (timezone "Europe/Prague")
>   (locale "en_US.utf8")
>   (bootloader
> (bootloader-configuration
>   (bootloader grub-efi-bootloader)
>   (target "/dev/sdx")))
>   (file-systems
> (list (file-system (mount-point "/home")
>(device "/dev/sda33")
>(type "ext4")

This OS lacks a root file system (which is no excuse for throwing a
backtrace, though!).

Ludo’.