guix-commits
[Top][All Lists]
Advanced

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

09/21: system: vm: Initial vm-image support for the Hurd.


From: guix-commits
Subject: 09/21: system: vm: Initial vm-image support for the Hurd.
Date: Thu, 7 May 2020 12:31:10 -0400 (EDT)

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

commit eb07d715097b15efd7a8ed19680c28a8af613650
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Thu Apr 30 15:40:26 2020 +0200

    system: vm: Initial vm-image support for the Hurd.
    
    * gnu/system/vm.scm (system-qemu-image): When building for the Hurd, add
    hurd-directives.
---
 gnu/system/vm.scm | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index 18bc4e6..e5b297d 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -644,7 +644,24 @@ of the GNU system as described by OS."
                                      (device root-uuid)
                                      (type file-system-type))
                                    file-systems-to-keep))))
-         (bootcfg (operating-system-bootcfg os)))
+         (bootcfg (operating-system-bootcfg os))
+         (hurd (operating-system-hurd os))
+         (target (%current-target-system))
+         (hurd (and hurd (if target
+                             (with-parameters ((%current-target-system target))
+                               hurd)
+                             hurd)))
+         (hurd-directives (if hurd
+                              `((directory "/servers")
+                                ,@(map (lambda (server)
+                                         `(file ,(string-append "/servers/" 
server)))
+                                       '("startup" "exec" "proc" "password"
+                                         "default-pager" "crash-dump-core"
+                                         "kill" "suspend"))
+                                ("/hurd" -> ,(file-append hurd "/hurd"))
+                                (directory "/etc")
+                                ("/etc/ttys" -> ,(file-append hurd 
"/etc/ttys")))
+                              '())))
     (qemu-image  #:os os
                  #:bootcfg-drv bootcfg
                  #:bootloader (bootloader-configuration-bootloader
@@ -654,6 +671,7 @@ of the GNU system as described by OS."
                  #:file-system-uuid root-uuid
                  #:inputs `(("system" ,os)
                             ("bootcfg" ,bootcfg))
+                 #:extra-directives hurd-directives
                  #:copy-inputs? #t)))
 
 



reply via email to

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