help-guix
[Top][All Lists]
Advanced

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

Re: Error system reconfigure with guix-latest


From: Alex Kost
Subject: Re: Error system reconfigure with guix-latest
Date: Sun, 04 Mar 2018 22:57:35 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux)

Jone (2018-03-04 15:46 +0300) wrote:

> Hello!
> I'm newbie. After update system (guix pull) I see this error:
>
> address@hidden ~# guix system -n reconfigure /etc/CURRENT.scm
> /etc/CURRENT.scm:37:24: error: you need these modules in the initrd
> for /dev/sdb2: sata_nv pata_acpi

As 宋文武 pointed, you can use 'initrd-modules' now.  To make it clear,
you need to replace this:

>   (initrd (lambda (file-systems . rest)
>           (apply base-initrd file-systems
>         #:extra-modules '("sata_nv" "pata_acpi")
>         rest)))

with this:

  (initrd-modules (cons* "sata_nv" "pata_acpi" %base-initrd-modules))

-- 
Alex



reply via email to

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