From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [v2 2/2] doc: Be more explicit in example of file-systems configuration. Date: Sun, 20 Dec 2015 23:30:33 -0500 Message-ID: <009c241f5f37a1b3db85daf782d844e3ae161741.1450672148.git.leo@famulari.name> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35964) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aAs7N-0004WD-TW for guix-devel@gnu.org; Sun, 20 Dec 2015 23:30:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aAs7J-0005iL-EK for guix-devel@gnu.org; Sun, 20 Dec 2015 23:30:41 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:48959) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aAs7J-0005iH-AR for guix-devel@gnu.org; Sun, 20 Dec 2015 23:30:37 -0500 Received: from jasmine.lan (c-69-249-5-231.hsd1.pa.comcast.net [69.249.5.231]) by mail.messagingengine.com (Postfix) with ESMTPA id 652D8C016F4 for ; Sun, 20 Dec 2015 23:30:36 -0500 (EST) In-Reply-To: In-Reply-To: References: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/system/examples/bare-bones.tmpl (file-systems): Change device label. * gnu/system/examples/desktop.tmpl (file-systems): Likewise. --- gnu/system/examples/bare-bones.tmpl | 4 ++-- gnu/system/examples/desktop.tmpl | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/system/examples/bare-bones.tmpl b/gnu/system/examples/bare-bones.tmpl index dc5cfc8..ad2f1c4 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-partition" 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-partition") (title 'label) (mount-point "/") (type "ext4")) diff --git a/gnu/system/examples/desktop.tmpl b/gnu/system/examples/desktop.tmpl index ee660e0..0fb3a70 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-partition" + ;; 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-partition") (title 'label) (mount-point "/") (type "ext4")) -- 2.6.2