[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: reconfigure with mapped-devices broken after e37944d8270cdca5729e358
From: |
Ludovic Courtès |
Subject: |
Re: reconfigure with mapped-devices broken after e37944d8270cdca5729e3583136c4fe9d487779c? |
Date: |
Wed, 07 Mar 2018 22:09:48 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) |
Hi Alex,
Alex ter Weele <address@hidden> skribis:
> I guix-pulled to something recent and got an error that was something
> like "cannot stat: "my-root"".
>
> My operating-system has sections like:
>
> (mapped-devices
> (list (mapped-device
> (source (uuid "97c130e9-edf4-40e4-8bfc-88fba056ffce"))
> (target "my-root")
> (type luks-device-mapping))))
>
> (file-systems (cons (file-system
> (device "my-root")
> (mount-point "/")
> (type "ext4")
> (dependencies mapped-devices))
I think you’re missing:
(title 'label)
in your ‘file-system’ declaration. As a consequence, “my-root” is
interpreted to be a device file name.
HTH!
Ludo’.