Lorenz Brun | 80deba5 | 2022-02-24 17:07:13 +0100 | [diff] [blame] | 1 | syntax = "proto3"; |
| 2 | |
| 3 | package metropolis.node.build.mkucode; |
| 4 | option go_package = "source.monogon.dev/metropolis/node/build/mkucode/spec"; |
| 5 | |
| 6 | message UCode { |
| 7 | repeated UCodeVendor vendor = 1; |
| 8 | } |
| 9 | |
| 10 | message UCodeVendor { |
| 11 | // The vendor id (as given in cpuid) of the CPU the microcode is for, like |
| 12 | // GenuineIntel or AuthenticAMD. |
| 13 | string id = 1; |
| 14 | |
| 15 | // List of paths to microcode files from for CPUs from the vendor. |
| 16 | repeated string file = 2; |
| 17 | } |