diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-12-16 08:45:01 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-12-23 10:53:59 +0100 |
commit | 594e9428c5ece0ccba1f57810adedefee58ca4cc (patch) | |
tree | a684acbfdb635371fbbc93533232353ddbd8a5fb /gnu | |
parent | cc4e8a84f4d5d8861c9445ec7e4a75b59d50d3db (diff) |
image: Add a shared-store? field.
* gnu/image.scm (<image>)[shared-store?]: New field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/image.scm | 3 |
1 files changed, 3 insertions, 0 deletions
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 @@ image-partitions image-compression? image-volatile-root? + image-shared-store? image-substitutable? image-type @@ -95,6 +96,8 @@ (default #t)) (volatile-root? image-volatile-root? ;boolean (default #t)) + (shared-store? image-shared-store? ;boolean + (default #f)) (substitutable? image-substitutable? ;boolean (default #t))) |