vm: Print the label and UUID of partitions.
* gnu/build/vm.scm (create-ext-file-system): Print the label and UUID.
This commit is contained in:
parent
d282388789
commit
353df40102
|
@ -265,7 +265,8 @@ actual /dev name based on DEVICE."
|
||||||
#:key label uuid)
|
#:key label uuid)
|
||||||
"Create an ext-family file system of TYPE on PARTITION. If LABEL is true,
|
"Create an ext-family file system of TYPE on PARTITION. If LABEL is true,
|
||||||
use that as the volume name. If UUID is true, use it as the partition UUID."
|
use that as the volume name. If UUID is true, use it as the partition UUID."
|
||||||
(format #t "creating ~a partition...\n" type)
|
(format #t "creating ~a partition... ~@[label: ~s~] ~@[uuid: ~s~]\n"
|
||||||
|
type label (and uuid (uuid->string uuid)))
|
||||||
(apply invoke (string-append "mkfs." type)
|
(apply invoke (string-append "mkfs." type)
|
||||||
"-F" partition
|
"-F" partition
|
||||||
`(,@(if label
|
`(,@(if label
|
||||||
|
|
Loading…
Reference in New Issue