guix-commits
[Top][All Lists]
Advanced

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

19/28: services: hurd: Use activation-service, hurd-etc-service.


From: guix-commits
Subject: 19/28: services: hurd: Use activation-service, hurd-etc-service.
Date: Sat, 23 May 2020 05:28:01 -0400 (EDT)

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

commit 7f98c1bb50dac0343c633c4d8db9d00ae6204286
Author: Jan (janneke) Nieuwenhuizen <address@hidden>
AuthorDate: Sun May 3 16:37:27 2020 +0200

    services: hurd: Use activation-service, hurd-etc-service.
    
    This:
        ./pre-inst-env guix system build --target=i586-pc-gnu 
gnu/system/examples/bare-hurd.tmpl
    
    attempts to build "hurd" for the build host (in hurd-etc-service).
    
    * gnu/system.scm (hurd-default-essential-services): Add %boot-service,
    %activation-service, hurd-etc-service.
---
 gnu/system.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/system.scm b/gnu/system.scm
index f9aa134..f878371 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -57,6 +57,7 @@
   #:use-module (gnu services)
   #:use-module (gnu services shepherd)
   #:use-module (gnu services base)
+  #:use-module (gnu services hurd)
   #:use-module (gnu bootloader)
   #:use-module (gnu system shadow)
   #:use-module (gnu system nss)
@@ -595,6 +596,9 @@ bookkeeping."
 
 (define (hurd-default-essential-services os)
   (list (service system-service-type '())
+        %boot-service
+        %activation-service
+        (hurd-etc-service os)
         (service profile-service-type '())))
 
 (define* (operating-system-services os)



reply via email to

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