summaryrefslogtreecommitdiff
path: root/proto/swversions.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/swversions.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/swversions.proto')
-rw-r--r--proto/swversions.proto12
1 files changed, 12 insertions, 0 deletions
diff --git a/proto/swversions.proto b/proto/swversions.proto
new file mode 100644
index 0000000..bf0ffb2
--- /dev/null
+++ b/proto/swversions.proto
@@ -0,0 +1,12 @@
+syntax = "proto3";
+
+package unit.info.v0;
+
+message SwVersion {
+ string name = 1;
+ string version = 2;
+}
+
+message SwVersions {
+ repeated SwVersion versions = 1;
+}