diff options
author | Mikhail Tsykalov <tsymsh@gmail.com> | 2020-11-06 12:47:37 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-11-26 00:05:39 +0100 |
commit | 788df2ecd62d5c2fc0d94928f45c947e6393e20b (patch) | |
tree | c91868513806a53c7780b835fd767282cec31ebe /doc | |
parent | 0a1da4652d9bb93d530ca52710f30b5d05a4251d (diff) | |
download | guix-788df2ecd62d5c2fc0d94928f45c947e6393e20b.tar guix-788df2ecd62d5c2fc0d94928f45c947e6393e20b.tar.gz |
mapped-devices: Allow target to be list of strings.
* gnu/system/mapped-devices.scm (<mapped-device>): Rename constructor to
%mapped-device.
[target]: Remove field.
[targets]: New field. Adjust users.
(mapped-device-compatibility-helper, mapped-device): New macros.
(mapped-device-target): New deprecated procedure.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index c5a88b15fa..13fb4b1531 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -13780,6 +13780,9 @@ specifying @code{"my-partition"} leads to the creation of the @code{"/dev/mapper/my-partition"} device. For RAID devices of type @code{raid-device-mapping}, the full device name such as @code{"/dev/md0"} needs to be given. +@item targets +This list of strings specifies names of the resulting mapped devices in case +there are several. The format is identical to @var{target}. @item type This must be a @code{mapped-device-kind} object, which specifies how |