From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41239) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2N11-0001Kd-Gm for guix-patches@gnu.org; Wed, 11 Oct 2017 15:50:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e2N10-0004qR-LN for guix-patches@gnu.org; Wed, 11 Oct 2017 15:50:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:54051) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e2N10-0004q2-H5 for guix-patches@gnu.org; Wed, 11 Oct 2017 15:50:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e2N0z-00067Y-Re for guix-patches@gnu.org; Wed, 11 Oct 2017 15:50:02 -0400 Subject: [bug#28696] [PATCH 0/5] Support UUIDs for the EFI System Partition (FAT) Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40281) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2N0F-00013f-UG for guix-patches@gnu.org; Wed, 11 Oct 2017 15:49:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e2N0F-0004CS-7E for guix-patches@gnu.org; Wed, 11 Oct 2017 15:49:15 -0400 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20171004072401.1251-1-ludo@gnu.org> <87fuas9h5s.fsf@gnu.org> Date: Wed, 11 Oct 2017 21:49:08 +0200 In-Reply-To: <87fuas9h5s.fsf@gnu.org> (Roel Janssen's message of "Mon, 09 Oct 2017 22:54:04 +0200") Message-ID: <87r2u9a2iz.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Roel Janssen Cc: 28696@debbugs.gnu.org Hi Roel, Roel Janssen skribis: > Sorry for the delay. It's really awesome that you've work so hard to > fix the issue I reported. I really appreciate it! > > I tried it with: > (file-system > (title 'uuid) > (device (uuid "72E5-26A0" 'fat)) > (mount-point "/boot/efi") > (type "vfat")) > > And it works. These changes look good to me. Awesome, thanks for testing! Most likely you can also do: (device "EFI") (title 'label) though I wouldn=E2=80=99t recommend that because if there=E2=80=99s, say, a= bootable UEFI dongle plugged in when you boot, you could end up mounting that one instead of your actual hard disk. Ludo=E2=80=99.