mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
22 lines
357 B
Protocol Buffer
22 lines
357 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "lib/common.proto";
|
|
|
|
message DfsProto {
|
|
enum Flavour {
|
|
UNDEFINED = 0;
|
|
ACORN_DFS = 1;
|
|
}
|
|
|
|
optional Flavour flavour = 1 [default = ACORN_DFS, (help) = "which flavour of DFS to implement"];
|
|
}
|
|
|
|
message Brother120FsProto {
|
|
}
|
|
|
|
message FilesystemProto {
|
|
optional DfsProto dfs = 1;
|
|
optional Brother120FsProto brother120fs = 2;
|
|
}
|
|
|