summaryrefslogtreecommitdiff
path: root/gnu/system/examples
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2015-12-20 23:09:22 -0500
committerLeo Famulari <leo@famulari.name>2015-12-21 13:12:07 -0500
commitd12717cba0716ecbc320708f8d491eedd73806a2 (patch)
treecafab3c2364b999b8f63b2f6a52d9ea2abec4fe1 /gnu/system/examples
parentdd81635571caf202895371a06b95334b612707fe (diff)
downloadguix-patches-d12717cba0716ecbc320708f8d491eedd73806a2.tar
guix-patches-d12717cba0716ecbc320708f8d491eedd73806a2.tar.gz
doc: Be more explicit in example of file-systems configuration.
* gnu/system/examples/bare-bones.tmpl (file-systems): Change device label. * gnu/system/examples/desktop.tmpl (file-systems): Likewise.
Diffstat (limited to 'gnu/system/examples')
-rw-r--r--gnu/system/examples/bare-bones.tmpl4
-rw-r--r--gnu/system/examples/desktop.tmpl6
2 files changed, 5 insertions, 5 deletions
diff --git a/gnu/system/examples/bare-bones.tmpl b/gnu/system/examples/bare-bones.tmpl
index dc5cfc81a4..87e8d1e93c 100644
--- a/gnu/system/examples/bare-bones.tmpl
+++ b/gnu/system/examples/bare-bones.tmpl
@@ -10,11 +10,11 @@
(timezone "Europe/Berlin")
(locale "en_US.UTF-8")
- ;; Assuming /dev/sdX is the target hard disk, and "root" is
+ ;; Assuming /dev/sdX is the target hard disk, and "my-root" is
;; the label of the target root file system.
(bootloader (grub-configuration (device "/dev/sdX")))
(file-systems (cons (file-system
- (device "root")
+ (device "my-root")
(title 'label)
(mount-point "/")
(type "ext4"))
diff --git a/gnu/system/examples/desktop.tmpl b/gnu/system/examples/desktop.tmpl
index ee660e0589..07183a533b 100644
--- a/gnu/system/examples/desktop.tmpl
+++ b/gnu/system/examples/desktop.tmpl
@@ -10,11 +10,11 @@
(timezone "Europe/Paris")
(locale "en_US.UTF-8")
- ;; Assuming /dev/sdX is the target hard disk, and "root" is
- ;; the label of the target root file system.
+ ;; Assuming /dev/sdX is the target hard disk, and "my-root"
+ ;; is the label of the target root file system.
(bootloader (grub-configuration (device "/dev/sdX")))
(file-systems (cons (file-system
- (device "root")
+ (device "my-root")
(title 'label)
(mount-point "/")
(type "ext4"))