blob: 36fcc4c9a0b991935b1c36b66ded79413d0285b5 [file] [log] [blame]
Lorenz Brun80deba52022-02-24 17:07:13 +01001syntax = "proto3";
2
Tim Windelschmidtc2290c22024-08-15 19:56:00 +02003package osbase.build.mkucode;
4option go_package = "source.monogon.dev/osbase/build/mkucode/spec";
Lorenz Brun80deba52022-02-24 17:07:13 +01005
6message UCode {
7 repeated UCodeVendor vendor = 1;
8}
9
10message 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}