summaryrefslogtreecommitdiff
path: root/proto/ubootenv.proto
diff options
context:
space:
mode:
authorunitexe <unitexe70@gmail.com>2025-12-22 13:23:47 -0600
committerunitexe <unitexe70@gmail.com>2025-12-22 13:25:11 -0600
commit1e7a50db174e6389c36ef356b6a32b9b13890dec (patch)
tree51396a29232ebaeba2f464ecd924fceb766963e4 /proto/ubootenv.proto
A devinfod prototypeHEADmain
- Get root - Get select u-boot environment variables - Get build info from /etc/buildinfo - Get versions from /etc/sw-versions
Diffstat (limited to 'proto/ubootenv.proto')
-rw-r--r--proto/ubootenv.proto12
1 files changed, 12 insertions, 0 deletions
diff --git a/proto/ubootenv.proto b/proto/ubootenv.proto
new file mode 100644
index 0000000..ad201da
--- /dev/null
+++ b/proto/ubootenv.proto
@@ -0,0 +1,12 @@
+syntax = "proto3";
+
+package unit.info.v0;
+
+message EnvVar {
+ string name = 1;
+ string value = 2;
+}
+
+message UbootEnv {
+ repeated EnvVar vars = 1;
+}