unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#55663] [PATCH] Image API: add FAT32 support
@ 2022-05-26 18:02 Pavel Shlyak
  2022-05-26 18:07 ` Tobias Geerinckx-Rice via Guix-patches via
  2022-05-29 14:35 ` Pavel Shlyak
  0 siblings, 2 replies; 8+ messages in thread
From: Pavel Shlyak @ 2022-05-26 18:02 UTC (permalink / raw)
  To: 55663

[-- 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)


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2022-05-31 13:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-26 18:02 [bug#55663] [PATCH] Image API: add FAT32 support Pavel Shlyak
2022-05-26 18:07 ` 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

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).