guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: build: image: Add support for EXT2 and EXT3 file-systems.


From: guix-commits
Subject: 02/04: build: image: Add support for EXT2 and EXT3 file-systems.
Date: Wed, 20 May 2020 10:26:01 -0400 (EDT)

mothacehe pushed a commit to branch wip-hurd-vm
in repository guix.

commit 8df063a166f3b5362dc117900b84b542fa6f82c3
Author: Mathieu Othacehe <address@hidden>
AuthorDate: Wed May 20 16:12:14 2020 +0200

    build: image: Add support for EXT2 and EXT3 file-systems.
    
    * gnu/build/image.scm (make-ext4-image): Rename to ...
    (make-ext-image): ... it, and pass the file-system type to mke2fs,
    (make-partition-image): Adapt to call "make-ext-image" if the partition
    file-system is prefixed by "ext".
---
 gnu/build/image.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/build/image.scm b/gnu/build/image.scm
index fe8e11a..23fc565 100644
--- a/gnu/build/image.scm
+++ b/gnu/build/image.scm
@@ -63,16 +63,18 @@
 take the partition metadata size into account, take a 25% margin."
   (* 1.25 (file-size root)))
 
-(define* (make-ext4-image partition target root
-                          #:key
-                          (owner-uid 0)
-                          (owner-gid 0))
-  "Handle the creation of EXT4 partition images. See 'make-partition-image'."
+(define* (make-ext-image partition target root
+                         #:key
+                         (owner-uid 0)
+                         (owner-gid 0))
+  "Handle the creation of EXT2/3/4 partition images. See
+'make-partition-image'."
   (let ((size (partition-size partition))
+        (fs (partition-file-system partition))
         (label (partition-label partition))
         (uuid (partition-uuid partition))
         (options "lazy_itable_init=1,lazy_journal_init=1"))
-    (invoke "mke2fs" "-t" "ext4" "-d" root
+    (invoke "mke2fs" "-t" fs "-d" root
             "-L" label "-U" (uuid->string uuid)
             "-E" (format #f "root_owner=~a:~a,~a"
                          owner-uid owner-gid options)
@@ -105,8 +107,8 @@ ROOT directory to populate the image."
   (let* ((partition (sexp->partition partition-sexp))
          (type (partition-file-system partition)))
     (cond
-     ((string=? type "ext4")
-      (make-ext4-image partition target root))
+     ((string-prefix? "ext" type)
+      (make-ext-image partition target root))
      ((string=? type "vfat")
       (make-vfat-image partition target root))
      (else



reply via email to

[Prev in Thread] Current Thread [Next in Thread]