From 9a25542c6d23fd4dc12f25fa914e6f560f4d7324 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 4 Aug 2025 04:00:05 +0900 Subject: container/init: use mount string constants These literals were missed when the constants were first defined. Signed-off-by: Ophestra --- container/mount.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'container/mount.go') diff --git a/container/mount.go b/container/mount.go index 919b6e02..821cdc0e 100644 --- a/container/mount.go +++ b/container/mount.go @@ -41,6 +41,8 @@ const ( // Note that any source value is allowed when fstype is [FstypeMqueue]. SourceMqueue = "mqueue" + // SourceTmpfsRootfs is used when mounting the tmpfs instance backing the intermediate root. + SourceTmpfsRootfs = "rootfs" // SourceTmpfsDevtmpfs is used when mounting tmpfs representing a subset of host devtmpfs. SourceTmpfsDevtmpfs = "devtmpfs" // SourceTmpfsEphemeral is used when mounting a writable instance of tmpfs. -- cgit v1.3.1