From 8757c3f2934352fe8ad9a86f6e6f1d4b7245644d Mon Sep 17 00:00:00 2001 From: Alex Griffin Date: Sun, 6 Feb 2022 16:29:47 -0600 Subject: system: image: Add tarball support. * gnu/image.scm ()[fields]: Add tarball to the supported formats. * gnu/system/image.scm (tarball-image, tarball-image-type): New variables. (system-tarball-image): New procedure. (image->root-file-system): Add tarball image support. (system-image): Ditto. * doc/guix.texi ("System Images"): Document it. Signed-off-by: Mathieu Othacehe --- gnu/image.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/image.scm') diff --git a/gnu/image.scm b/gnu/image.scm index 68784deb12..b2ef0f60af 100644 --- a/gnu/image.scm +++ b/gnu/image.scm @@ -152,7 +152,7 @@ that is not in SET, mentioning FIELD in the error message." ;; The supported image formats. (define-set-sanitizer validate-image-format format - (disk-image compressed-qcow2 docker iso9660)) + (disk-image compressed-qcow2 docker iso9660 tarball)) ;; The supported partition table types. (define-set-sanitizer validate-partition-table-type partition-table-type -- cgit v1.2.3