all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Danny Milosavljevic <dannym@scratchpost.org>
Cc: Mathieu Othacehe <m.othacehe@gmail.com>,
	35722-done@debbugs.gnu.org, Graham Lee <graham@iamleeg.com>
Subject: bug#35722: Filesystem error in the installer
Date: Tue, 14 May 2019 20:20:08 +0200	[thread overview]
Message-ID: <20190514201804.22dd17fd@scratchpost.org> (raw)
In-Reply-To: <20190514185008.768fcc9c@scratchpost.org>

[-- Attachment #1: Type: text/plain, Size: 952 bytes --]

Root cause analysis:

                (user-partitions (append
                                  (auto-partition disk #:scheme scheme) 
                                  (create-special-user-partitions
                                   (disk-partitions disk))))) <---


(define (create-special-user-partitions partitions)
  "Return a list with a <user-partition> record describing the ESP partition
found in PARTITIONS, if any."
  (filter-map (lambda (partition)
                (and (esp-partition? partition)
                     (partition->user-partition partition))) <----
              partitions))

I think create-special-user-partitions and the form above is automatically
trying to keep existing UEFI ESP partitions of the user.

And partition->user-partition failed for (existing) fat16 partitions.

So the fix of adding fat16 was definitely the right one for that specific
file system type.

It should be fine now.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

      parent reply	other threads:[~2019-05-14 18:26 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-13 22:01 bug#35722: Filesystem error in the installer Graham Lee
2019-05-14 16:30 ` Ludovic Courtès
2019-05-14 16:50   ` Danny Milosavljevic
2019-05-14 17:00     ` Danny Milosavljevic
2019-05-14 17:37       ` Graham Lee
2019-05-14 18:42         ` Danny Milosavljevic
2019-05-14 18:20     ` Danny Milosavljevic [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190514201804.22dd17fd@scratchpost.org \
    --to=dannym@scratchpost.org \
    --cc=35722-done@debbugs.gnu.org \
    --cc=graham@iamleeg.com \
    --cc=m.othacehe@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.