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.
This commit is contained in:
Leo Famulari 2015-12-20 23:09:22 -05:00
parent dd81635571
commit d12717cba0
2 changed files with 5 additions and 5 deletions

View file

@ -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"))

View file

@ -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"))