unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Pavel Shlyak <p.shlyak@pantherx.org>
To: 55663@debbugs.gnu.org
Subject: [bug#55663] [PATCH] Image API: add FAT32 support
Date: Thu, 26 May 2022 21:02:22 +0300	[thread overview]
Message-ID: <3EE7299C-64ED-4062-BA31-ADF3A6AD6A37@pantherx.org> (raw)

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

I believe it is an important change as Raspberry PI (and I suppose some other boards) cannot boot with fat16 boot partitions. 
With this patch, "vfat" is treated as fat16 partition not to break backward-compatibility. "fat32", on the other hand, creates a fat32 partition.

[-- Attachment #2: 0001-Image-API-support-FAT32-partitions.patch --]
[-- Type: application/octet-stream, Size: 2470 bytes --]

From 0700c443d9162ac4928ac8fee58278c1f0824736 Mon Sep 17 00:00:00 2001
From: Pavel Shlyak <p.shlyak@pantherx.org>
Date: Thu, 26 May 2022 21:00:51 +0300
Subject: [PATCH] Image API: support FAT32 partitions

---
 gnu/build/image.scm  | 8 +++++---
 gnu/system/image.scm | 2 ++
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/build/image.scm b/gnu/build/image.scm
index 3e8b94e2d6..804685c7fb 100644
--- a/gnu/build/image.scm
+++ b/gnu/build/image.scm
@@ -95,12 +95,12 @@ (define* (make-ext-image partition target root
                            (estimate-partition-size root)
                            size)))))))
 
-(define* (make-vfat-image partition target root)
+(define* (make-vfat-image partition target root fs_bits)
   "Handle the creation of VFAT partition images.  See 'make-partition-image'."
   (let ((size (partition-size partition))
         (label (partition-label partition)))
     (invoke "fakeroot" "mkdosfs" "-n" label "-C" target
-            "-F" "16" "-S" "1024"
+            "-F" fs_bits "-S" "1024"
             (size-in-kib
              (if (eq? size 'guess)
                  (estimate-partition-size root)
@@ -121,7 +121,9 @@ (define* (make-partition-image partition-sexp target root)
      ((string-prefix? "ext" type)
       (make-ext-image partition target root))
      ((string=? type "vfat")
-      (make-vfat-image partition target root))
+      (make-vfat-image partition target root "16"))
+     ((string=? type "fat32")
+      (make-vfat-image partition target root "32"))
      (else
       (raise (condition
               (&message
diff --git a/gnu/system/image.scm b/gnu/system/image.scm
index dd32e58c2d..0dd16ed34e 100644
--- a/gnu/system/image.scm
+++ b/gnu/system/image.scm
@@ -313,6 +313,7 @@ (define (partition->dos-type partition)
          ((member 'esp flags) "0xEF")
          ((string-prefix? "ext" file-system) "0x83")
          ((string=? file-system "vfat") "0x0E")
+         ((string=? file-system "fat32") "0x0C")
          (else
           (raise (condition
                   (&message
@@ -330,6 +331,7 @@ (define (partition->gpt-type partition)
          ((member 'esp flags) "U")
          ((string-prefix? "ext" file-system) "L")
          ((string=? file-system "vfat") "F")
+         ((string=? file-system "fat32") "F")
          (else
           (raise (condition
                   (&message
-- 
2.32.1 (Apple Git-133)


             reply	other threads:[~2022-05-26 18:03 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-26 18:02 Pavel Shlyak [this message]
2022-05-26 18:07 ` [bug#55663] [PATCH] Image API: add FAT32 support Tobias Geerinckx-Rice via Guix-patches via
2022-05-26 20:54   ` Pavel Shlyak
2022-05-29 11:46     ` Pavel Shlyak
2022-05-29 14:35 ` Pavel Shlyak
2022-05-30  7:01   ` Mathieu Othacehe
2022-05-30  9:01     ` Pavel Shlyak
2022-05-31 13:07       ` bug#55663: " Mathieu Othacehe

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=3EE7299C-64ED-4062-BA31-ADF3A6AD6A37@pantherx.org \
    --to=p.shlyak@pantherx.org \
    --cc=55663@debbugs.gnu.org \
    /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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).