diff options
| author | unitexe <unitexe70@gmail.com> | 2025-12-22 13:23:47 -0600 |
|---|---|---|
| committer | unitexe <unitexe70@gmail.com> | 2025-12-22 13:25:11 -0600 |
| commit | 1e7a50db174e6389c36ef356b6a32b9b13890dec (patch) | |
| tree | 51396a29232ebaeba2f464ecd924fceb766963e4 /proto/ubootenv.proto | |
- 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.proto | 12 |
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; +} |
