mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 01:51:51 +00:00
This changes the license of all files in the images/ directory from GPLv2 to the Expat license (so-called MIT). According to git the files have been authored by: Abhishek Dubey Adrian Reber Alexander Mikhalitsyn Alice Frosi Andrei Vagin (Andrew Vagin, Andrey Vagin) Cyrill Gorcunov Dengguangxing Dmitry Safonov Guoyun Sun Kirill Tkhai Kir Kolyshkin Laurent Dufour Michael Holzheu Michał Cłapiński Mike Rapoport Nicolas Viennot Nikita Spiridonov Pavel Emelianov (Pavel Emelyanov) Pavel Tikhomirov Radostin Stoyanov rbruno@gsd.inesc-id.pt Sebastian Pipping Stanislav Kinsburskiy Tycho Andersen Valeriy Vdovin The Expat license (so-called MIT) can be found here: https://opensource.org/licenses/MIT According to that link the correct SPDX short identifier is 'MIT'. https://spdx.org/licenses/MIT.html Signed-off-by: Adrian Reber <areber@redhat.com>
63 lines
1.2 KiB
Protocol Buffer
63 lines
1.2 KiB
Protocol Buffer
// SPDX-License-Identifier: MIT
|
|
|
|
syntax = "proto2";
|
|
|
|
import "opts.proto";
|
|
|
|
enum fstype {
|
|
UNSUPPORTED = 0;
|
|
PROC = 1;
|
|
SYSFS = 2;
|
|
DEVTMPFS = 3;
|
|
BINFMT_MISC = 4;
|
|
TMPFS = 5;
|
|
DEVPTS = 6;
|
|
SIMFS = 7;
|
|
PSTORE = 8;
|
|
SECURITYFS = 9;
|
|
FUSECTL = 10;
|
|
DEBUGFS = 11;
|
|
CGROUP = 12;
|
|
AUFS = 13;
|
|
MQUEUE = 14;
|
|
FUSE = 15;
|
|
AUTO = 16;
|
|
OVERLAYFS = 17;
|
|
AUTOFS = 18;
|
|
TRACEFS = 19;
|
|
|
|
/* These three are reserved for NFS support */
|
|
// RPC_PIPEFS = 20;
|
|
// NFS = 21;
|
|
// NFS4 = 22;
|
|
|
|
CGROUP2 = 23;
|
|
};
|
|
|
|
message mnt_entry {
|
|
required uint32 fstype = 1;
|
|
required uint32 mnt_id = 2;
|
|
required uint32 root_dev = 3 [(criu).dev = true];
|
|
required uint32 parent_mnt_id = 4;
|
|
required uint32 flags = 5 [(criu).hex = true];
|
|
|
|
required string root = 6;
|
|
required string mountpoint = 7;
|
|
required string source = 8;
|
|
required string options = 9;
|
|
|
|
optional uint32 shared_id = 10;
|
|
optional uint32 master_id = 11;
|
|
|
|
optional bool with_plugin = 12;
|
|
optional bool ext_mount = 13;
|
|
|
|
optional string fsname = 14;
|
|
optional bool internal_sharing = 15;
|
|
|
|
optional bool deleted = 16;
|
|
optional uint32 sb_flags = 17 [(criu).hex = true];
|
|
/* user defined mapping for external mount */
|
|
optional string ext_key = 18;
|
|
}
|