From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: Re: GuixSD 0.11.0 Install Date: Wed, 24 Aug 2016 11:31:33 +0100 Message-ID: <87bn0i4fwa.fsf@ike.i-did-not-set--mail-host-address--so-tickle-me> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45197) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcVTK-0004On-2A for guix-devel@gnu.org; Wed, 24 Aug 2016 06:31:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcVTF-0006gP-Sv for guix-devel@gnu.org; Wed, 24 Aug 2016 06:31:49 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:50254) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcVTD-0006cv-Jj for guix-devel@gnu.org; Wed, 24 Aug 2016 06:31:45 -0400 In-Reply-To: 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" To: David Craven , Marc Dunivan Cc: "guix-devel@gnu.org" David Craven writes: >> (device "my-root") > >> (device "my-boot") > > device should be a path to the device node and should look something > like /dev/sda1 and /dev/sda2. > >> (title 'label) > >> (title 'label) > > remove these (title 'label) instructs the boot routine to look for a partition or device with filesystem label "my-root" or "my-boot" instead of a device path. That works on my GuixSD at least: (file-systems (cons (file-system (device "root") (title 'label) (mount-point "/") (type "ext4")) %base-file-systems))