diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-01-31 17:41:57 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-02-01 08:59:13 +0100 |
commit | efdcb6f29cd0fd384ed88b0b9eb65547514a79a5 (patch) | |
tree | d2a1814f333d290988bd509571e10aa6166faa0e /gnu/system | |
parent | ff853a2a0615764e24abc9ce5850830a432022be (diff) | |
download | guix-efdcb6f29cd0fd384ed88b0b9eb65547514a79a5.tar guix-efdcb6f29cd0fd384ed88b0b9eb65547514a79a5.tar.gz |
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.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system/install.scm b/gnu/system/install.scm index bd501c76cc..8ec93bc4f9 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> ;;; ;;; This file is part of GNU Guix. @@ -336,6 +336,7 @@ Use Alt-F2 for documentation. (cons (file-system (mount-point "/") (device "gnu-disk-image") + (title 'label) (type "ext4")) %base-file-systems)) |