[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
19/35: image: Support extra-directives, add hurd-directives.
From: |
guix-commits |
Subject: |
19/35: image: Support extra-directives, add hurd-directives. |
Date: |
Thu, 28 May 2020 13:03:32 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd-vm
in repository guix.
commit 06a6ea5798776d7188e62900d3cc88acd1962550
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed May 27 13:15:46 2020 +0200
image: Support extra-directives, add hurd-directives.
* gnu/build/image.scm (initialize-root-partition): Add
parameter '#:extra-directives' for populate root.
* gnu/system/image.scm (system-disk-image): Likewise.
(system-image): Use it to pass hurd-directives when bulding for the Hurd.
---
gnu/build/image.scm | 3 ++-
gnu/system/image.scm | 17 +++++++++++++++--
2 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/gnu/build/image.scm b/gnu/build/image.scm
index 70f1a61..2aecbfc 100644
--- a/gnu/build/image.scm
+++ b/gnu/build/image.scm
@@ -163,6 +163,7 @@ deduplicates files common to CLOSURE and the rest of
PREFIX."
system-directory
(make-device-nodes
make-essential-device-nodes)
+ (extra-directives '())
#:allow-other-keys)
"Initialize the given ROOT directory. Use BOOTCFG and BOOTCFG-LOCATION to
install the bootloader configuration.
@@ -171,7 +172,7 @@ If REGISTER-CLOSURES? is true, register REFERENCES-GRAPHS
in the store. If
DEDUPLICATE? is true, then also deduplicate files common to CLOSURES and the
rest of the store when registering the closures. SYSTEM-DIRECTORY is the name
of the directory of the 'system' derivation."
- (populate-root-file-system system-directory root)
+ (populate-root-file-system system-directory root #:extras extra-directives)
(populate-store references-graphs root)
;; Populate /dev.
diff --git a/gnu/system/image.scm b/gnu/system/image.scm
index d406fc0..5d1d98a 100644
--- a/gnu/system/image.scm
+++ b/gnu/system/image.scm
@@ -199,6 +199,7 @@
bootcfg
bootloader
register-closures?
+ (extra-directives '())
(inputs '()))
"Return as a file-like object, the disk-image described by IMAGE. Said
image can be copied on a USB stick as is. BOOTLOADER is the bootloader that
@@ -267,6 +268,7 @@ used in the image."
(and (target-intel?
(or target system))
grub-efi))
+ #:extra-directives '#$extra-directives
#:bootloader-package
#+(bootloader-package bootloader)
#:bootloader-installer
@@ -526,15 +528,26 @@ image, depending on IMAGE format."
(register-closures? (has-guix-service-type? os))
(bootcfg (operating-system-bootcfg os))
(bootloader (bootloader-configuration-bootloader
- (operating-system-bootloader os))))
+ (operating-system-bootloader os)))
+ (hurd (operating-system-hurd os))
+ (boot-activation (and hurd (operating-system-activation-script os)))
+ (hurd-directives (if hurd
+ `(("/hurd" -> ,(file-append hurd "/hurd"))
+ (directory "/boot")
+ ("/boot/activation" -> ,boot-activation))
+ '())))
(case (image-format image)
((disk-image)
(system-disk-image image*
#:bootcfg bootcfg
#:bootloader bootloader
#:register-closures? register-closures?
+ #:extra-directives hurd-directives
#:inputs `(("system" ,os)
- ("bootcfg" ,bootcfg))))
+ ("bootcfg" ,bootcfg)
+ ,@(if hurd
+ `(("boot-activation"
,boot-activation))
+ '()))))
((iso9660)
(system-iso9660-image image*
#:bootcfg bootcfg
- 21/35: system: Add 'hurd' field to <operating-system>., (continued)
- 21/35: system: Add 'hurd' field to <operating-system>., guix-commits, 2020/05/28
- 23/35: system: Add 'multiboot-modules' field to <boot-parameters>., guix-commits, 2020/05/28
- 25/35: system: Use 'hurd' package in label., guix-commits, 2020/05/28
- 26/35: system: examples: Add bare-hurd.tmpl., guix-commits, 2020/05/28
- 29/35: services: hurd: Use activation-service, hurd-etc-service., guix-commits, 2020/05/28
- 31/35: services: Add `hurd-console-service-type'., guix-commits, 2020/05/28
- 32/35: services: Add `hurd-getty-service-type'., guix-commits, 2020/05/28
- 04/35: vm: 'qemu-image' preserves the cross-compilation target of the OS., guix-commits, 2020/05/28
- 10/35: bootloader: grub: Do not run grub-install when creating a disk-image., guix-commits, 2020/05/28
- 12/35: image: Add bootloader installation support., guix-commits, 2020/05/28
- 19/35: image: Support extra-directives, add hurd-directives.,
guix-commits <=
- 20/35: system: hurd: Add hurd-default-essential-services., guix-commits, 2020/05/28
- 22/35: bootloader: Extend `<menu-entry>' for multiboot., guix-commits, 2020/05/28
- 27/35: services: hurd: Add `hurd-etc-service'., guix-commits, 2020/05/28
- 11/35: bootloader: grub: Use inheritance to define grub-minimal-bootloader., guix-commits, 2020/05/28
- 24/35: bootloader: grub: Add support for multiboot., guix-commits, 2020/05/28
- 28/35: system: Add `hurd-activation'., guix-commits, 2020/05/28
- 30/35: gnu: hurd: Create minimal "runsystem" script to invoke "rc"., guix-commits, 2020/05/28
- 33/35: system: hurd: Populate services., guix-commits, 2020/05/28
- 34/35: system: hurd: Remove 'cross-hurd-image' hack., guix-commits, 2020/05/28
- 35/35: system: bare-hurd.tmpl: Add openssh client and service., guix-commits, 2020/05/28