summaryrefslogtreecommitdiffstats
path: root/src/shared/dissect-image.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2020-07-28 18:50:17 +0200
committerLennart Poettering <lennart@poettering.net>2020-08-11 22:26:48 +0200
commit5c05f062646169cf8df838310a1577431ea43a73 (patch)
tree5ff10b57bf02f5b032310be091320671570b0995 /src/shared/dissect-image.h
parentmkdir: handle mkdir_p() of simple filename gracefully (diff)
downloadsystemd-5c05f062646169cf8df838310a1577431ea43a73.tar.xz
systemd-5c05f062646169cf8df838310a1577431ea43a73.zip
dissect: optionally mkdir directory to overmount
Diffstat (limited to '')
-rw-r--r--src/shared/dissect-image.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/dissect-image.h b/src/shared/dissect-image.h
index 7f67c8745e..3d0a191d71 100644
--- a/src/shared/dissect-image.h
+++ b/src/shared/dissect-image.h
@@ -69,6 +69,7 @@ typedef enum DissectImageFlags {
DISSECT_IMAGE_FSCK = 1 << 11, /* File system check the partition before mounting (no effect when combined with DISSECT_IMAGE_READ_ONLY) */
DISSECT_IMAGE_NO_PARTITION_TABLE = 1 << 12, /* Only recognize single file system images */
DISSECT_IMAGE_VERITY_SHARE = 1 << 13, /* When activating a verity device, reuse existing one if already open */
+ DISSECT_IMAGE_MKDIR = 1 << 14, /* Make directory to mount right before mounting, if missing */
} DissectImageFlags;
struct DissectedImage {