Skip to content

Commit 95bcdd0

Browse files
committed
Framework 16: Add ESRT GUID
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent 17c3112 commit 95bcdd0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

framework_lib/src/esrt/mod.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,12 @@ pub const FL16_BIOS_GUID: GUID = GUID::build_from_components(
119119
0x5d64,
120120
&[0x8e, 0x18, 0x65, 0x8d, 0x20, 0x5a, 0xcf, 0x34],
121121
);
122+
pub const AMD16_AI300_BIOS_GUID: GUID = GUID::build_from_components(
123+
0x820436ee,
124+
0x8208,
125+
0x463b,
126+
&[0x92, 0xb8, 0x82, 0x77, 0xd6, 0x38, 0x4d, 0x93],
127+
);
122128
pub const AMD13_RYZEN7040_BIOS_GUID: GUID = GUID::build_from_components(
123129
0xb5f7dcc1,
124130
0x568c,
@@ -186,6 +192,7 @@ pub enum FrameworkGuidKind {
186192
RplUCsme,
187193
MtlCsme,
188194
Fl16Bios,
195+
Amd16Ai300Bios,
189196
Amd13Ryzen7040Bios,
190197
Amd13Ai300Bios,
191198
DesktopAmdAi300Bios,
@@ -201,6 +208,7 @@ pub fn match_guid_kind(guid: &CGuid) -> FrameworkGuidKind {
201208
MTL_BIOS_GUID => FrameworkGuidKind::MtlBios,
202209
FW12_RPL_BIOS_GUID => FrameworkGuidKind::Fw12RplBios,
203210
FL16_BIOS_GUID => FrameworkGuidKind::Fl16Bios,
211+
AMD16_AI300_BIOS_GUID => FrameworkGuidKind::Amd16Ai300Bios,
204212
AMD13_RYZEN7040_BIOS_GUID => FrameworkGuidKind::Amd13Ryzen7040Bios,
205213
AMD13_AI300_BIOS_GUID => FrameworkGuidKind::Amd13Ai300Bios,
206214
DESKTOP_AMD_AI300_BIOS_GUID => FrameworkGuidKind::DesktopAmdAi300Bios,

0 commit comments

Comments
 (0)