summaryrefslogtreecommitdiff
path: root/gnu/ci.scm
diff options
context:
space:
mode:
authorMathieu Othacehe <m.othacehe@gmail.com>2020-04-28 14:15:28 +0200
committerMathieu Othacehe <m.othacehe@gmail.com>2020-05-05 16:13:53 +0200
commitf19cf27c2b9ff92e2c0fd931ef7fde39c376adaa (patch)
tree6d4805a1c7496e3e1e7c55084b84bd7ece348805 /gnu/ci.scm
parentf8fd1157174fd523d36dcfa756c965a54c30d5ae (diff)
image: Add a new API.
Raw disk-images and ISO9660 images are created in a Qemu virtual machine. This is quite fragile, very slow, and almost unusable without KVM. For all these reasons, add support for host image generation. This implies the use new image generation mechanisms. - Raw disk images: images of partitions are created using tools such as mke2fs and mkdosfs depending on the partition file-system type. The partition images are then assembled into a final image using genimage. - ISO9660 images: the ISO root directory is populated within the store. GNU xorriso is then called on that directory, in the exact same way as this is done in (gnu build vm) module. Those mechanisms are built upon the new (gnu image) module. * gnu/image.scm: New file. * gnu/system/image.scm: New file. * gnu/build/image: New file. * gnu/local.mk: Add them. * gnu/system/vm.scm (system-disk-image): Rename to system-disk-image-in-vm. * gnu/ci.scm (qemu-jobs): Adapt to new API. * gnu/tests/install.scm (run-install): Ditto. * guix/scripts/system.scm (system-derivation-for-action): Ditto.
Diffstat (limited to 'gnu/ci.scm')
-rw-r--r--gnu/ci.scm45
1 files changed, 19 insertions, 26 deletions
diff --git a/gnu/ci.scm b/gnu/ci.scm
index fb2596c809c..0430cf594b7 100644
--- a/gnu/ci.scm
+++ b/gnu/ci.scm
@@ -38,6 +38,7 @@
38 #:select (lookup-compressor self-contained-tarball)) 38 #:select (lookup-compressor self-contained-tarball))
39 #:use-module (gnu bootloader) 39 #:use-module (gnu bootloader)
40 #:use-module (gnu bootloader u-boot) 40 #:use-module (gnu bootloader u-boot)
41 #:use-module (gnu image)
41 #:use-module (gnu packages) 42 #:use-module (gnu packages)
42 #:use-module (gnu packages gcc) 43 #:use-module (gnu packages gcc)
43 #:use-module (gnu packages base) 44 #:use-module (gnu packages base)
@@ -49,6 +50,7 @@
49 #:use-module (gnu packages make-bootstrap) 50 #:use-module (gnu packages make-bootstrap)
50 #:use-module (gnu packages package-management) 51 #:use-module (gnu packages package-management)
51 #:use-module (gnu system) 52 #:use-module (gnu system)
53 #:use-module (gnu system image)
52 #:use-module (gnu system vm) 54 #:use-module (gnu system vm)
53 #:use-module (gnu system install) 55 #:use-module (gnu system install)
54 #:use-module (gnu tests) 56 #:use-module (gnu tests)
@@ -209,32 +211,23 @@ system.")
209 (expt 2 20)) 211 (expt 2 20))
210 212
211 (if (member system %guixsd-supported-systems) 213 (if (member system %guixsd-supported-systems)
212 (if (member system %u-boot-systems) 214 (list (->job 'usb-image
213 (list (->job 'flash-image 215 (run-with-store store
214 (run-with-store store 216 (mbegin %store-monad
215 (mbegin %store-monad 217 (set-guile-for-build (default-guile))
216 (set-guile-for-build (default-guile)) 218 (system-image
217 (system-disk-image 219 (image
218 (operating-system (inherit installation-os) 220 (inherit efi-disk-image)
219 (bootloader (bootloader-configuration 221 (size (* 1500 MiB))
220 (bootloader u-boot-bootloader) 222 (operating-system installation-os))))))
221 (target #f)))) 223 (->job 'iso9660-image
222 #:disk-image-size 224 (run-with-store store
223 (* 1500 MiB)))))) 225 (mbegin %store-monad
224 (list (->job 'usb-image 226 (set-guile-for-build (default-guile))
225 (run-with-store store 227 (system-image
226 (mbegin %store-monad 228 (image
227 (set-guile-for-build (default-guile)) 229 (inherit iso9660-image)
228 (system-disk-image installation-os 230 (operating-system installation-os)))))))
229 #:disk-image-size
230 (* 1500 MiB)))))
231 (->job 'iso9660-image
232 (run-with-store store
233 (mbegin %store-monad
234 (set-guile-for-build (default-guile))
235 (system-disk-image installation-os
236 #:file-system-type
237 "iso9660"))))))
238 '())) 231 '()))
239 232
240(define channel-build-system 233(define channel-build-system