[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#52550] [PATCH 02/10] image: Add a shared-store? field.
From: |
Mathieu Othacehe |
Subject: |
[bug#52550] [PATCH 02/10] image: Add a shared-store? field. |
Date: |
Thu, 16 Dec 2021 14:06:41 +0100 |
* gnu/image.scm (<image>)[shared-store?]: New field.
---
gnu/image.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/image.scm b/gnu/image.scm
index 1c954af8cf..8423cf1d9c 100644
--- a/gnu/image.scm
+++ b/gnu/image.scm
@@ -42,6 +42,7 @@ (define-module (gnu image)
image-partitions
image-compression?
image-volatile-root?
+ image-shared-store?
image-substitutable?
image-type
@@ -95,6 +96,8 @@ (define-record-type* <image>
(default #t))
(volatile-root? image-volatile-root? ;boolean
(default #t))
+ (shared-store? image-shared-store? ;boolean
+ (default #f))
(substitutable? image-substitutable? ;boolean
(default #t)))
--
2.34.0
- [bug#52550] [PATCH 00/10] Further work on the image API., Mathieu Othacehe, 2021/12/16
- [bug#52550] [PATCH 01/10] build: image: Add optional closure copy support., Mathieu Othacehe, 2021/12/16
- [bug#52550] [PATCH 03/10] image: Add a shared-network? field., Mathieu Othacehe, 2021/12/16
- [bug#52550] [PATCH 06/10] Remove VM generation dead-code., Mathieu Othacehe, 2021/12/16
- [bug#52550] [PATCH 04/10] system: image: Add docker support., Mathieu Othacehe, 2021/12/16
- [bug#52550] [PATCH 07/10] scripts: system: Deprecate the docker-image command., Mathieu Othacehe, 2021/12/16
- [bug#52550] [PATCH 08/10] scripts: system: Pass the volatile field to VM generation., Mathieu Othacehe, 2021/12/16
- [bug#52550] [PATCH 10/10] tests: docker: Fix it., Mathieu Othacehe, 2021/12/16
- [bug#52550] [PATCH 05/10] system: vm: Use the image API to generate QEMU images., Mathieu Othacehe, 2021/12/16
- [bug#52550] [PATCH 02/10] image: Add a shared-store? field.,
Mathieu Othacehe <=
- [bug#52550] [PATCH 09/10] scripts: system: Use the disk-image size argument for VM generation., Mathieu Othacehe, 2021/12/16
- [bug#52550] [PATCH 00/10] Further work on the image API., Ludovic Courtès, 2021/12/22