guix-commits
[Top][All Lists]
Advanced

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

15/35: system: image: Fix image-with-os.


From: guix-commits
Subject: 15/35: system: image: Fix image-with-os.
Date: Thu, 28 May 2020 13:03:31 -0400 (EDT)

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

commit a89abadb0ecc8472633f2f12f6da6dea06ce5024
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Sat May 23 19:10:07 2020 +0200

    system: image: Fix image-with-os.
    
    * gnu/system/image.scm (image-with-os): Do not reorder partitions, as we 
want
    them to be created according to definition order.
---
 gnu/system/image.scm | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gnu/system/image.scm b/gnu/system/image.scm
index a706f87..97124a4 100644
--- a/gnu/system/image.scm
+++ b/gnu/system/image.scm
@@ -424,18 +424,18 @@ to OS.  Also set the UUID and the size of the root 
partition."
        (string=? (file-system-mount-point fs) "/"))
      (operating-system-file-systems os)))
 
-  (let*-values (((partitions) (image-partitions base-image))
-                ((root-partition other-partitions)
-                 (srfi-1:partition root-partition? partitions)))
-    (image
-     (inherit base-image)
-     (operating-system os)
-     (partitions
-      (cons (partition
-             (inherit (car root-partition))
-             (uuid (file-system-device root-file-system))
-             (size (root-size base-image)))
-            other-partitions)))))
+  (image
+   (inherit base-image)
+   (operating-system os)
+   (partitions
+    (map (lambda (p)
+           (if (root-partition? p)
+               (partition
+                (inherit p)
+                (uuid (file-system-device root-file-system))
+                (size (root-size base-image)))
+               p))
+         (image-partitions base-image)))))
 
 (define (operating-system-for-image image)
   "Return an operating-system based on the one specified in IMAGE, but



reply via email to

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