guix-patches
[Top][All Lists]
Advanced

[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






reply via email to

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