summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-01-31 17:41:57 +0100
committerLudovic Courtès <ludo@gnu.org>2016-02-01 08:59:13 +0100
commitefdcb6f29cd0fd384ed88b0b9eb65547514a79a5 (patch)
treed2a1814f333d290988bd509571e10aa6166faa0e /gnu/system
parentff853a2a0615764e24abc9ce5850830a432022be (diff)
install: Make it clear that we refer to the root by label.
* gnu/system/install.scm (installation-os): Use (title 'label) for the root file system.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/install.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system/install.scm b/gnu/system/install.scm
index bd501c76cc4..8ec93bc4f99 100644
--- a/gnu/system/install.scm
+++ b/gnu/system/install.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> 3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
4;;; 4;;;
5;;; This file is part of GNU Guix. 5;;; This file is part of GNU Guix.
@@ -336,6 +336,7 @@ Use Alt-F2 for documentation.
336 (cons (file-system 336 (cons (file-system
337 (mount-point "/") 337 (mount-point "/")
338 (device "gnu-disk-image") 338 (device "gnu-disk-image")
339 (title 'label)
339 (type "ext4")) 340 (type "ext4"))
340 %base-file-systems)) 341 %base-file-systems))
341 342