guix-commits
[Top][All Lists]
Advanced

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

01/05: vm: Add support for registering closures to make-iso9660-image.


From: Christopher Baines
Subject: 01/05: vm: Add support for registering closures to make-iso9660-image.
Date: Wed, 6 Sep 2017 03:45:27 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 22bbdb5f794c9fe2f350f4295b8dcf93438ad011
Author: Christopher Baines <address@hidden>
Date:   Sun Sep 3 11:47:58 2017 +0100

    vm: Add support for registering closures to make-iso9660-image.
    
    This mimics the functionality in the root-partition-initializer used in
    creating the QEMU image. This helps when trying to run guix system init from
    the generated ISO image.
    
    * gnu/build/vm.scm (make-iso9660-image): Add support for registering 
closures.
---
 gnu/build/vm.scm | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm
index 727494a..606257d 100644
--- a/gnu/build/vm.scm
+++ b/gnu/build/vm.scm
@@ -366,12 +366,27 @@ SYSTEM-DIRECTORY is the name of the directory of the 
'system' derivation."
       (error "failed to create GRUB EFI image"))))
 
 (define* (make-iso9660-image grub config-file os-drv target
-                             #:key (volume-id "GuixSD_image") (volume-uuid #f))
+                             #:key (volume-id "GuixSD_image") (volume-uuid #f)
+                             register-closures? (closures '()))
   "Given a GRUB package, creates an iso image as TARGET, using CONFIG-FILE as
 GRUB configuration and OS-DRV as the stuff in it."
-  (let ((grub-mkrescue (string-append grub "/bin/grub-mkrescue")))
+  (let ((grub-mkrescue (string-append grub "/bin/grub-mkrescue"))
+        (target-store  (string-append "/tmp/root" (%store-directory))))
     (mkdir-p "/tmp/root/var/run")
     (mkdir-p "/tmp/root/run")
+
+    (mkdir-p target-store)
+    (mount (%store-directory) target-store "" MS_BIND)
+
+    (when register-closures?
+      (display "registering closures...\n")
+      (for-each (lambda (closure)
+                  (register-closure
+                   "/tmp/root"
+                   (string-append "/xchg/" closure)
+                   #:deduplicate? #f))
+                closures))
+
     (unless (zero? (apply system*
                           `(,grub-mkrescue "-o" ,target
                             ,(string-append "boot/grub/grub.cfg=" config-file)



reply via email to

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